Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.33 KB

DNSV1ZoneUpdateRequest.md

File metadata and controls

30 lines (21 loc) · 1.33 KB

DNSV1ZoneUpdateRequest

Properties

Name Type Description Notes
overwrite bool If `true`, resource records (RRs) matching name and type will be deleted and new RRs will be created, otherwise resource records' ttl's are updated and new records are appended. If no matching RRs are found, they are created. [optional] [default to True]
zone List[DNSV1ZoneUpdateRequestZoneInner]

Example

from hostinger_api.models.dnsv1_zone_update_request import DNSV1ZoneUpdateRequest

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

# convert the object into a dict
dnsv1_zone_update_request_dict = dnsv1_zone_update_request_instance.to_dict()
# create an instance of DNSV1ZoneUpdateRequest from a dict
dnsv1_zone_update_request_from_dict = DNSV1ZoneUpdateRequest.from_dict(dnsv1_zone_update_request_dict)

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