HttpStatusCode
Properties
| Name |
Type |
Description |
Notes |
| error |
bool |
|
[optional] |
| is1xx_informational |
bool |
|
[optional] |
| is2xx_successful |
bool |
|
[optional] |
| is3xx_redirection |
bool |
|
[optional] |
| is4xx_client_error |
bool |
|
[optional] |
| is5xx_server_error |
bool |
|
[optional] |
Example
from scc_firewall_manager_sdk.models.http_status_code import HttpStatusCode
# TODO update the JSON string below
json = "{}"
# create an instance of HttpStatusCode from a JSON string
http_status_code_instance = HttpStatusCode.from_json(json)
# print the JSON string representation of the object
print(HttpStatusCode.to_json())
# convert the object into a dict
http_status_code_dict = http_status_code_instance.to_dict()
# create an instance of HttpStatusCode from a dict
http_status_code_from_dict = HttpStatusCode.from_dict(http_status_code_dict)
[Back to Model list] [Back to API list] [Back to README]