Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1012 Bytes

File metadata and controls

33 lines (24 loc) · 1012 Bytes

AccessToken

Properties

Name Type Description Notes
id int [optional]
name str [optional]
scopes List[str] [optional]
sha1 str [optional]
token_last_eight str [optional]

Example

from openapi_client.models.access_token import AccessToken

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

# convert the object into a dict
access_token_dict = access_token_instance.to_dict()
# create an instance of AccessToken from a dict
access_token_from_dict = AccessToken.from_dict(access_token_dict)

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