Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

File metadata and controls

32 lines (23 loc) · 1.11 KB

GetDomainConfigsResponse

Properties

Name Type Description Notes
configurations object [optional]
status object
reason str [optional]
code str [optional]

Example

from client.models.get_domain_configs_response import GetDomainConfigsResponse

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

# convert the object into a dict
get_domain_configs_response_dict = get_domain_configs_response_instance.to_dict()
# create an instance of GetDomainConfigsResponse from a dict
get_domain_configs_response_from_dict = GetDomainConfigsResponse.from_dict(get_domain_configs_response_dict)

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