| Name | Type | Description | Notes |
|---|---|---|---|
| api_key_id | int | [optional] | |
| api_key_id_v2 | str | [optional] | |
| app | AppsApp | [optional] | |
| scopes | List[AuthorizationOAuthScope] | [optional] |
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)