Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

AddOnResponse.md

File metadata and controls

30 lines (21 loc) · 1.02 KB

AddOnResponse

Properties

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.

Example

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]