Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

File metadata and controls

30 lines (21 loc) · 1.21 KB

BillingV1OrderStoreRequestItemsInner

Properties

Name Type Description Notes
item_id str Price Item ID
quantity int

Example

from hostinger_api.models.billing_v1_order_store_request_items_inner import BillingV1OrderStoreRequestItemsInner

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

# convert the object into a dict
billing_v1_order_store_request_items_inner_dict = billing_v1_order_store_request_items_inner_instance.to_dict()
# create an instance of BillingV1OrderStoreRequestItemsInner from a dict
billing_v1_order_store_request_items_inner_from_dict = BillingV1OrderStoreRequestItemsInner.from_dict(billing_v1_order_store_request_items_inner_dict)

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