Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 1.57 KB

File metadata and controls

34 lines (27 loc) · 1.57 KB

TermBaseEditDto

Properties

Name Type Description Notes
name str
langs List[str]
client IdReference [optional]
domain IdReference [optional]
sub_domain IdReference [optional]
business_unit IdReference [optional]
owner IdReference [optional]
note str [optional]

Example

from phrasetms_client.models.term_base_edit_dto import TermBaseEditDto

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

# convert the object into a dict
term_base_edit_dto_dict = term_base_edit_dto_instance.to_dict()
# create an instance of TermBaseEditDto from a dict
term_base_edit_dto_from_dict = TermBaseEditDto.from_dict(term_base_edit_dto_dict)

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