Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.04 KB

SubDomainReference.md

File metadata and controls

29 lines (22 loc) · 1.04 KB

SubDomainReference

Properties

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

Example

from phrasetms_client.models.sub_domain_reference import SubDomainReference

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

# convert the object into a dict
sub_domain_reference_dict = sub_domain_reference_instance.to_dict()
# create an instance of SubDomainReference from a dict
sub_domain_reference_from_dict = SubDomainReference.from_dict(sub_domain_reference_dict)

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