thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/BearerTokenAuthentication.md
2026-02-03 09:52:22 +00:00

1.1 KiB

BearerTokenAuthentication

Properties

Name Type Description Notes
token str
type AuthenticationType

Example

from thousandeyes_sdk.connectors.models.bearer_token_authentication import BearerTokenAuthentication

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

# convert the object into a dict
bearer_token_authentication_dict = bearer_token_authentication_instance.to_dict()
# create an instance of BearerTokenAuthentication from a dict
bearer_token_authentication_from_dict = BearerTokenAuthentication.from_dict(bearer_token_authentication_dict)

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