Name | Type | Description | Notes |
---|---|---|---|
filters | List[DNSV1ZoneDestroyRequestFiltersInner] | Filter records for deletion |
from hostinger_api.models.dnsv1_zone_destroy_request import DNSV1ZoneDestroyRequest
# TODO update the JSON string below
json = "{}"
# create an instance of DNSV1ZoneDestroyRequest from a JSON string
dnsv1_zone_destroy_request_instance = DNSV1ZoneDestroyRequest.from_json(json)
# print the JSON string representation of the object
print(DNSV1ZoneDestroyRequest.to_json())
# convert the object into a dict
dnsv1_zone_destroy_request_dict = dnsv1_zone_destroy_request_instance.to_dict()
# create an instance of DNSV1ZoneDestroyRequest from a dict
dnsv1_zone_destroy_request_from_dict = DNSV1ZoneDestroyRequest.from_dict(dnsv1_zone_destroy_request_dict)