Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 907 Bytes

File metadata and controls

28 lines (20 loc) · 907 Bytes

DomainPrimeType

Тип прайм домена.

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.domain_prime_type import DomainPrimeType

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

# convert the object into a dict
domain_prime_type_dict = domain_prime_type_instance.to_dict()
# create an instance of DomainPrimeType from a dict
domain_prime_type_form_dict = domain_prime_type.from_dict(domain_prime_type_dict)

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