Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

File metadata and controls

32 lines (23 loc) · 1.13 KB

PatchDomainConfigResponse

Properties

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

Example

from client.models.patch_domain_config_response import PatchDomainConfigResponse

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

# convert the object into a dict
patch_domain_config_response_dict = patch_domain_config_response_instance.to_dict()
# create an instance of PatchDomainConfigResponse from a dict
patch_domain_config_response_from_dict = PatchDomainConfigResponse.from_dict(patch_domain_config_response_dict)

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