Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

Customer.md

File metadata and controls

32 lines (23 loc) · 1.03 KB

Customer

Properties

Name Type Description Notes
email str The customer's email address. [optional]
given_name str The customer's given name. [optional]
phone_number str The customer's phone number. [optional]
surname str The customer's surname. [optional]

Example

from openapi_client.models.customer import Customer

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

# convert the object into a dict
customer_dict = customer_instance.to_dict()
# create an instance of Customer from a dict
customer_from_dict = Customer.from_dict(customer_dict)

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