Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

CustomerInput.md

File metadata and controls

33 lines (24 loc) · 1.12 KB

CustomerInput

The customer's details.

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_input import CustomerInput

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

# convert the object into a dict
customer_input_dict = customer_input_instance.to_dict()
# create an instance of CustomerInput from a dict
customer_input_from_dict = CustomerInput.from_dict(customer_input_dict)

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