InternalTagModel class
Name | Type | Description | Notes |
---|---|---|---|
id | int | Tag Id | [optional] |
name | str | Name tag | [optional] |
form_count | int | Count of times Tag is used by forms | [optional] |
organization_count | int | Count of times Tag is used by Organizations | [optional] |
tag_type | HelloAssoApiV5ModelsEnumsTagType | [optional] | |
tag_parent | HelloAssoApiV5ModelsTagsInternalTagModel | [optional] | |
amount_collected | int | Amount collected by all forms linked to this tag (in cents) | [optional] |
from helloasso_python.models.hello_asso_api_v5_models_tags_internal_tag_model import HelloAssoApiV5ModelsTagsInternalTagModel
# TODO update the JSON string below
json = "{}"
# create an instance of HelloAssoApiV5ModelsTagsInternalTagModel from a JSON string
hello_asso_api_v5_models_tags_internal_tag_model_instance = HelloAssoApiV5ModelsTagsInternalTagModel.from_json(json)
# print the JSON string representation of the object
print(HelloAssoApiV5ModelsTagsInternalTagModel.to_json())
# convert the object into a dict
hello_asso_api_v5_models_tags_internal_tag_model_dict = hello_asso_api_v5_models_tags_internal_tag_model_instance.to_dict()
# create an instance of HelloAssoApiV5ModelsTagsInternalTagModel from a dict
hello_asso_api_v5_models_tags_internal_tag_model_from_dict = HelloAssoApiV5ModelsTagsInternalTagModel.from_dict(hello_asso_api_v5_models_tags_internal_tag_model_dict)