| Name |
Type |
Description |
Notes |
| id |
int |
Domain ID. |
|
| name |
str |
Domain name. |
|
| guid |
str |
Domain GUID. |
|
from plesk_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]