Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1012 Bytes

AddOnQuantityRequest.md

File metadata and controls

29 lines (20 loc) · 1012 Bytes

AddOnQuantityRequest

Properties

Name Type Description Notes
quantity int The number of Addons you wish to aquire.

Example

from pfruck_contabo.models.add_on_quantity_request import AddOnQuantityRequest

# TODO update the JSON string below
json = "{}"
# create an instance of AddOnQuantityRequest from a JSON string
add_on_quantity_request_instance = AddOnQuantityRequest.from_json(json)
# print the JSON string representation of the object
print(AddOnQuantityRequest.to_json())

# convert the object into a dict
add_on_quantity_request_dict = add_on_quantity_request_instance.to_dict()
# create an instance of AddOnQuantityRequest from a dict
add_on_quantity_request_from_dict = AddOnQuantityRequest.from_dict(add_on_quantity_request_dict)

[Back to Model list] [Back to API list] [Back to README]