Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.22 KB

File metadata and controls

30 lines (23 loc) · 1.22 KB

SubDomainDto

Properties

Name Type Description Notes
id str [optional]
uid str [optional]
name str [optional]
created_by UserReference [optional]

Example

from phrasetms_client.models.sub_domain_dto import SubDomainDto

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

# convert the object into a dict
sub_domain_dto_dict = sub_domain_dto_instance.to_dict()
# create an instance of SubDomainDto from a dict
sub_domain_dto_from_dict = SubDomainDto.from_dict(sub_domain_dto_dict)

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