Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 915 Bytes

File metadata and controls

30 lines (21 loc) · 915 Bytes

CustomerPayload

Properties

Name Type Description Notes
id int
plan_type str

Example

from hyperstack.models.customer_payload import CustomerPayload

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

# convert the object into a dict
customer_payload_dict = customer_payload_instance.to_dict()
# create an instance of CustomerPayload from a dict
customer_payload_from_dict = CustomerPayload.from_dict(customer_payload_dict)

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