Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.46 KB

File metadata and controls

30 lines (21 loc) · 1.46 KB

HelloAssoApiV5CommonModelsStatisticsSharePayment

Properties

Name Type Description Notes
id int Id of the payment [optional]
share_amount int Amount of the item payed on this payment term (in cents) [optional]

Example

from helloasso_python.models.hello_asso_api_v5_common_models_statistics_share_payment import HelloAssoApiV5CommonModelsStatisticsSharePayment

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

# convert the object into a dict
hello_asso_api_v5_common_models_statistics_share_payment_dict = hello_asso_api_v5_common_models_statistics_share_payment_instance.to_dict()
# create an instance of HelloAssoApiV5CommonModelsStatisticsSharePayment from a dict
hello_asso_api_v5_common_models_statistics_share_payment_from_dict = HelloAssoApiV5CommonModelsStatisticsSharePayment.from_dict(hello_asso_api_v5_common_models_statistics_share_payment_dict)

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