Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.4 KB

File metadata and controls

31 lines (22 loc) · 1.4 KB

HelloAssoApiV5CommonModelsTagsPublicTagModel

PublicNameTagModel class

Properties

Name Type Description Notes
name str Name tag [optional]
score float Tag score : measure tag relevance [optional]

Example

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)

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