| Name |
Type |
Description |
Notes |
| enabled |
bool |
|
[optional] [default to True] |
| values |
object |
|
[optional] |
from platform_api_python_client.models.external_dns import ExternalDns
# TODO update the JSON string below
json = "{}"
# create an instance of ExternalDns from a JSON string
external_dns_instance = ExternalDns.from_json(json)
# print the JSON string representation of the object
print(ExternalDns.to_json())
# convert the object into a dict
external_dns_dict = external_dns_instance.to_dict()
# create an instance of ExternalDns from a dict
external_dns_from_dict = ExternalDns.from_dict(external_dns_dict)
[Back to Model list] [Back to API list] [Back to README]