Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

HelloAssoApiV5ModelsFormsTermModel.md

File metadata and controls

31 lines (22 loc) · 1.24 KB

HelloAssoApiV5ModelsFormsTermModel

TermsModel class

Properties

Name Type Description Notes
var_date datetime Term Date [optional]
amount int Term Amount [optional]

Example

from helloasso_python.models.hello_asso_api_v5_models_forms_term_model import HelloAssoApiV5ModelsFormsTermModel

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

# convert the object into a dict
hello_asso_api_v5_models_forms_term_model_dict = hello_asso_api_v5_models_forms_term_model_instance.to_dict()
# create an instance of HelloAssoApiV5ModelsFormsTermModel from a dict
hello_asso_api_v5_models_forms_term_model_from_dict = HelloAssoApiV5ModelsFormsTermModel.from_dict(hello_asso_api_v5_models_forms_term_model_dict)

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