Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 968 Bytes

File metadata and controls

31 lines (23 loc) · 968 Bytes

AuthKey

The authorization key parameters.

Properties

Name Type Description Notes
name str The authorization key name.
value str The authorization key value.
title str The authorization key title. [optional]

Example

from docspace_api_sdk.models.auth_key import AuthKey

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

# convert the object into a dict
auth_key_dict = auth_key_instance.to_dict()
# create an instance of AuthKey from a dict
auth_key_from_dict = AuthKey.from_dict(auth_key_dict)

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