Skip to content

Files

Latest commit

 

History

History
31 lines (22 loc) · 978 Bytes

DomainRequest.md

File metadata and controls

31 lines (22 loc) · 978 Bytes

DomainRequest

A Domain Object

Properties

Name Type Description Notes
pki_domain_id int The unique ID of the Domain [optional]
s_domain_name str The name of the Domain

Example

from eZmaxApi.models.domain_request import DomainRequest

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

# convert the object into a dict
domain_request_dict = domain_request_instance.to_dict()
# create an instance of DomainRequest from a dict
domain_request_from_dict = DomainRequest.from_dict(domain_request_dict)

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