-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Philipp Fruck <[email protected]>
- Loading branch information
1 parent
8431f01
commit 61696cb
Showing
45 changed files
with
4,509 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# AssignVipResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**data** | [**List[VipResponse]**](VipResponse.md) | | | ||
**links** | [**SelfLinks**](SelfLinks.md) | | | ||
|
||
## Example | ||
|
||
```python | ||
from pfruck_contabo.models.assign_vip_response import AssignVipResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of AssignVipResponse from a JSON string | ||
assign_vip_response_instance = AssignVipResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(AssignVipResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
assign_vip_response_dict = assign_vip_response_instance.to_dict() | ||
# create an instance of AssignVipResponse from a dict | ||
assign_vip_response_from_dict = AssignVipResponse.from_dict(assign_vip_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# FindVipResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**data** | [**List[VipResponse]**](VipResponse.md) | | | ||
**links** | [**SelfLinks**](SelfLinks.md) | | | ||
|
||
## Example | ||
|
||
```python | ||
from pfruck_contabo.models.find_vip_response import FindVipResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of FindVipResponse from a JSON string | ||
find_vip_response_instance = FindVipResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(FindVipResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
find_vip_response_dict = find_vip_response_instance.to_dict() | ||
# create an instance of FindVipResponse from a dict | ||
find_vip_response_from_dict = FindVipResponse.from_dict(find_vip_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# IpV41 | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**ip** | **str** | IP address | | ||
**gateway** | **str** | Gateway | | ||
**netmask_cidr** | **int** | Netmask CIDR | | ||
**broadcast** | **str** | Broadcast address | | ||
**net** | **str** | Net address | | ||
|
||
## Example | ||
|
||
```python | ||
from pfruck_contabo.models.ip_v41 import IpV41 | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of IpV41 from a JSON string | ||
ip_v41_instance = IpV41.from_json(json) | ||
# print the JSON string representation of the object | ||
print(IpV41.to_json()) | ||
|
||
# convert the object into a dict | ||
ip_v41_dict = ip_v41_instance.to_dict() | ||
# create an instance of IpV41 from a dict | ||
ip_v41_from_dict = IpV41.from_dict(ip_v41_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# ListVipAuditResponse | ||
|
||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**pagination** | [**PaginationMeta**](PaginationMeta.md) | Data about pagination like how many results, pages, page size. | | ||
**data** | [**List[VipAuditResponse]**](VipAuditResponse.md) | | | ||
**links** | [**Links**](Links.md) | | | ||
|
||
## Example | ||
|
||
```python | ||
from pfruck_contabo.models.list_vip_audit_response import ListVipAuditResponse | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of ListVipAuditResponse from a JSON string | ||
list_vip_audit_response_instance = ListVipAuditResponse.from_json(json) | ||
# print the JSON string representation of the object | ||
print(ListVipAuditResponse.to_json()) | ||
|
||
# convert the object into a dict | ||
list_vip_audit_response_dict = list_vip_audit_response_instance.to_dict() | ||
# create an instance of ListVipAuditResponse from a dict | ||
list_vip_audit_response_from_dict = ListVipAuditResponse.from_dict(list_vip_audit_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
Oops, something went wrong.