Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.71 KB

File metadata and controls

42 lines (33 loc) · 2.71 KB

HelloAssoApiV5ModelsStatisticsOrderDetail

Properties

Name Type Description Notes
payer HelloAssoApiV5ModelsStatisticsPayer [optional]
items List[HelloAssoApiV5ModelsStatisticsOrderItem] All items of the order [optional]
payments List[HelloAssoApiV5ModelsStatisticsOrderPayment] All payments of the order [optional]
amount HelloAssoApiV5ModelsStatisticsOrderAmountModel [optional]
id int The ID of the Order [optional]
var_date datetime Order creation date [optional]
form_slug str FormSlug (lowercase name of the form without special characters) [optional]
form_type HelloAssoApiV5ModelsEnumsFormType [optional]
organization_name str The organization name. [optional]
organization_slug str OrganizationSlug (lowercase name of the organization without special characters) [optional]
organization_type HelloAssoApiV5ModelsEnumsOrganizationType [optional]
organization_is_under_coluche_law bool Whether or not the organization is subject to the coluche law [optional]
checkout_intent_id int Checkout intent Id if available [optional]
meta HelloAssoApiV5ModelsCommonMetaModel [optional]

Example

from helloasso_python.models.hello_asso_api_v5_models_statistics_order_detail import HelloAssoApiV5ModelsStatisticsOrderDetail

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

# convert the object into a dict
hello_asso_api_v5_models_statistics_order_detail_dict = hello_asso_api_v5_models_statistics_order_detail_instance.to_dict()
# create an instance of HelloAssoApiV5ModelsStatisticsOrderDetail from a dict
hello_asso_api_v5_models_statistics_order_detail_from_dict = HelloAssoApiV5ModelsStatisticsOrderDetail.from_dict(hello_asso_api_v5_models_statistics_order_detail_dict)

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