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
| 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] |
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)