StatusInfo
Properties
| Name |
Type |
Description |
Notes |
| status |
str |
The Status of the request. |
[optional] |
Example
from scc_firewall_manager_sdk.models.status_info import StatusInfo
# TODO update the JSON string below
json = "{}"
# create an instance of StatusInfo from a JSON string
status_info_instance = StatusInfo.from_json(json)
# print the JSON string representation of the object
print(StatusInfo.to_json())
# convert the object into a dict
status_info_dict = status_info_instance.to_dict()
# create an instance of StatusInfo from a dict
status_info_form_dict = status_info.from_dict(status_info_dict)
[Back to Model list] [Back to API list] [Back to README]