Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 868 Bytes

File metadata and controls

28 lines (20 loc) · 868 Bytes

TokenSchema

Properties

Name Type Description Notes
bearer str Token for authorization of API queries. [optional]

Example

from bsg_api.models.token_schema import TokenSchema

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

# convert the object into a dict
token_schema_dict = token_schema_instance.to_dict()
# create an instance of TokenSchema from a dict
token_schema_from_dict = TokenSchema.from_dict(token_schema_dict)

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