Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

V2DomainDnsValidationRecordsInner

Properties

Name Type Description Notes
name str DNS record name (host/subdomain) [optional]
type str DNS record type (typically CNAME) [optional]
value str DNS record value to point to [optional]

Example

from quantcdn.models.v2_domain_dns_validation_records_inner import V2DomainDnsValidationRecordsInner

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

# convert the object into a dict
v2_domain_dns_validation_records_inner_dict = v2_domain_dns_validation_records_inner_instance.to_dict()
# create an instance of V2DomainDnsValidationRecordsInner from a dict
v2_domain_dns_validation_records_inner_from_dict = V2DomainDnsValidationRecordsInner.from_dict(v2_domain_dns_validation_records_inner_dict)

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