Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1013 Bytes

GlossaryActivationDto.md

File metadata and controls

27 lines (20 loc) · 1013 Bytes

GlossaryActivationDto

Properties

Name Type Description Notes
active bool [optional]

Example

from phrasetms_client.models.glossary_activation_dto import GlossaryActivationDto

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

# convert the object into a dict
glossary_activation_dto_dict = glossary_activation_dto_instance.to_dict()
# create an instance of GlossaryActivationDto from a dict
glossary_activation_dto_from_dict = GlossaryActivationDto.from_dict(glossary_activation_dto_dict)

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