Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 938 Bytes

File metadata and controls

29 lines (20 loc) · 938 Bytes

ForbiddenResponse

Properties

Name Type Description Notes
meta Meta

Example

from plesk_wp_toolkit_client.models.forbidden_response import ForbiddenResponse

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

# convert the object into a dict
forbidden_response_dict = forbidden_response_instance.to_dict()
# create an instance of ForbiddenResponse from a dict
forbidden_response_from_dict = ForbiddenResponse.from_dict(forbidden_response_dict)

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