Name |
Type |
Description |
Notes |
id |
int |
Id of the Addon. Please refer to list here. |
|
quantity |
int |
The number of Addons you wish to aquire. |
|
from pfruck_contabo.models.add_on_response import AddOnResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AddOnResponse from a JSON string
add_on_response_instance = AddOnResponse.from_json(json)
# print the JSON string representation of the object
print(AddOnResponse.to_json())
# convert the object into a dict
add_on_response_dict = add_on_response_instance.to_dict()
# create an instance of AddOnResponse from a dict
add_on_response_from_dict = AddOnResponse.from_dict(add_on_response_dict)
[Back to Model list] [Back to API list] [Back to README]