Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.14 KB

JoinTagsWarningDtoAllOf.md

File metadata and controls

28 lines (21 loc) · 1.14 KB

JoinTagsWarningDtoAllOf

Properties

Name Type Description Notes
source_tags_count int [optional]
translation_tags_count int [optional]

Example

from phrasetms_client.models.join_tags_warning_dto_all_of import JoinTagsWarningDtoAllOf

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

# convert the object into a dict
join_tags_warning_dto_all_of_dict = join_tags_warning_dto_all_of_instance.to_dict()
# create an instance of JoinTagsWarningDtoAllOf from a dict
join_tags_warning_dto_all_of_from_dict = JoinTagsWarningDtoAllOf.from_dict(join_tags_warning_dto_all_of_dict)

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