Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.35 KB

File metadata and controls

32 lines (23 loc) · 1.35 KB

DNSV1ZoneRecordResource

Properties

Name Type Description Notes
name str Name of the record (use `@` for wildcard name) [optional]
records List[DNSV1ZoneNameRecordResource] Array of `DNS.V1.Zone.NameRecordResource` [optional]
ttl int TTL (Time-To-Live) of the record [optional]
type str Type of the record [optional]

Example

from hostinger_api.models.dnsv1_zone_record_resource import DNSV1ZoneRecordResource

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

# convert the object into a dict
dnsv1_zone_record_resource_dict = dnsv1_zone_record_resource_instance.to_dict()
# create an instance of DNSV1ZoneRecordResource from a dict
dnsv1_zone_record_resource_from_dict = DNSV1ZoneRecordResource.from_dict(dnsv1_zone_record_resource_dict)

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