Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.66 KB

HelloAssoApiV5ModelsCartsCheckoutPayer.md

File metadata and controls

37 lines (28 loc) · 1.66 KB

HelloAssoApiV5ModelsCartsCheckoutPayer

Properties

Name Type Description Notes
first_name str FirstName [optional]
last_name str LastName [optional]
email str Email [optional]
date_of_birth datetime Date of birth (Date only, no time part) [optional]
address str Address [optional]
city str City [optional]
zip_code str ZipCode [optional]
country str 3 letter country code [optional]
company_name str Used if the payer is a company [optional]

Example

from helloasso_python.models.hello_asso_api_v5_models_carts_checkout_payer import HelloAssoApiV5ModelsCartsCheckoutPayer

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

# convert the object into a dict
hello_asso_api_v5_models_carts_checkout_payer_dict = hello_asso_api_v5_models_carts_checkout_payer_instance.to_dict()
# create an instance of HelloAssoApiV5ModelsCartsCheckoutPayer from a dict
hello_asso_api_v5_models_carts_checkout_payer_from_dict = HelloAssoApiV5ModelsCartsCheckoutPayer.from_dict(hello_asso_api_v5_models_carts_checkout_payer_dict)

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