CommonApiError

Properties

Name Type Description Notes
details Dict[str, object] Additional details, if any, about the error. [optional]
error_code str Unique code that describes the error. [optional]
error_msg str Human-readable error description in English. [optional]

Example

from scc_firewall_manager_sdk.models.common_api_error import CommonApiError

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

# convert the object into a dict
common_api_error_dict = common_api_error_instance.to_dict()
# create an instance of CommonApiError from a dict
common_api_error_form_dict = common_api_error.from_dict(common_api_error_dict)

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