Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.91 KB

File metadata and controls

34 lines (25 loc) · 1.91 KB

HelloAssoApiV5ModelsFormsCustomFieldPublicModel

A custom field can be assigned to a Tier or an ExtraOption It is used to give extra information during the reservation of a tier

Properties

Name Type Description Notes
id int Id of the customField [optional] [readonly]
values List[str] The list of possible values if type is a CHOICE_LIST [optional] [readonly]
is_required bool True if the custom field must be filled by the user before validating a cart [optional] [readonly]
type HelloAssoApiV5ModelsEnumsFieldType [optional]
label str The label to be displayed to the user [optional] [readonly]

Example

from helloasso_python.models.hello_asso_api_v5_models_forms_custom_field_public_model import HelloAssoApiV5ModelsFormsCustomFieldPublicModel

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

# convert the object into a dict
hello_asso_api_v5_models_forms_custom_field_public_model_dict = hello_asso_api_v5_models_forms_custom_field_public_model_instance.to_dict()
# create an instance of HelloAssoApiV5ModelsFormsCustomFieldPublicModel from a dict
hello_asso_api_v5_models_forms_custom_field_public_model_from_dict = HelloAssoApiV5ModelsFormsCustomFieldPublicModel.from_dict(hello_asso_api_v5_models_forms_custom_field_public_model_dict)

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