ApiTokenInfo
Properties
| Name |
Type |
Description |
Notes |
| api_token |
str |
The API Access Token. |
[optional] |
Example
from scc_firewall_manager_sdk.models.api_token_info import ApiTokenInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ApiTokenInfo from a JSON string
api_token_info_instance = ApiTokenInfo.from_json(json)
# print the JSON string representation of the object
print(ApiTokenInfo.to_json())
# convert the object into a dict
api_token_info_dict = api_token_info_instance.to_dict()
# create an instance of ApiTokenInfo from a dict
api_token_info_form_dict = api_token_info.from_dict(api_token_info_dict)
[Back to Model list] [Back to API list] [Back to README]