Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.23 KB

File metadata and controls

32 lines (23 loc) · 1.23 KB

AuthorizationAPICallerInfo

Properties

Name Type Description Notes
api_key_id int [optional]
api_key_id_v2 str [optional]
app AppsApp [optional]
scopes List[AuthorizationOAuthScope] [optional]

Example

from kenar_api_client.models.authorization_api_caller_info import AuthorizationAPICallerInfo

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

# convert the object into a dict
authorization_api_caller_info_dict = authorization_api_caller_info_instance.to_dict()
# create an instance of AuthorizationAPICallerInfo from a dict
authorization_api_caller_info_from_dict = AuthorizationAPICallerInfo.from_dict(authorization_api_caller_info_dict)

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