Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.93 KB

File metadata and controls

36 lines (27 loc) · 1.93 KB

HelloAssoApiV5ModelsFormsExtraOptionPublicModel

ExtraOptionFullModel

Properties

Name Type Description Notes
custom_fields List[HelloAssoApiV5ModelsFormsCustomFieldPublicModel] List of custom fields to be filled by the user [optional]
id int Id [optional]
price int Price of the extraOption, can be free [optional]
vat_rate float Vat rate if applicable Amount have to be 0.10 for 10% [optional]
label str The name of the option [optional]
description str The description of the option [optional]
is_required bool Additional option is required/mandatory [optional] [readonly]

Example

from helloasso_python.models.hello_asso_api_v5_models_forms_extra_option_public_model import HelloAssoApiV5ModelsFormsExtraOptionPublicModel

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

# convert the object into a dict
hello_asso_api_v5_models_forms_extra_option_public_model_dict = hello_asso_api_v5_models_forms_extra_option_public_model_instance.to_dict()
# create an instance of HelloAssoApiV5ModelsFormsExtraOptionPublicModel from a dict
hello_asso_api_v5_models_forms_extra_option_public_model_from_dict = HelloAssoApiV5ModelsFormsExtraOptionPublicModel.from_dict(hello_asso_api_v5_models_forms_extra_option_public_model_dict)

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