Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1020 Bytes

File metadata and controls

29 lines (22 loc) · 1020 Bytes

DomainReference

Properties

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

Example

from phrasetms_client.models.domain_reference import DomainReference

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

# convert the object into a dict
domain_reference_dict = domain_reference_instance.to_dict()
# create an instance of DomainReference from a dict
domain_reference_from_dict = DomainReference.from_dict(domain_reference_dict)

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