PublicNameTagModel class
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name tag | [optional] |
| score | float | Tag score : measure tag relevance | [optional] |
from helloasso_python.models.hello_asso_api_v5_common_models_tags_public_tag_model import HelloAssoApiV5CommonModelsTagsPublicTagModel
# TODO update the JSON string below
json = "{}"
# create an instance of HelloAssoApiV5CommonModelsTagsPublicTagModel from a JSON string
hello_asso_api_v5_common_models_tags_public_tag_model_instance = HelloAssoApiV5CommonModelsTagsPublicTagModel.from_json(json)
# print the JSON string representation of the object
print(HelloAssoApiV5CommonModelsTagsPublicTagModel.to_json())
# convert the object into a dict
hello_asso_api_v5_common_models_tags_public_tag_model_dict = hello_asso_api_v5_common_models_tags_public_tag_model_instance.to_dict()
# create an instance of HelloAssoApiV5CommonModelsTagsPublicTagModel from a dict
hello_asso_api_v5_common_models_tags_public_tag_model_from_dict = HelloAssoApiV5CommonModelsTagsPublicTagModel.from_dict(hello_asso_api_v5_common_models_tags_public_tag_model_dict)