thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/OtherTokenAuthentication.md
Miguel Pragosa 15ad3554e9
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#143)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-03-19 14:31:20 +00:00

1.1 KiB

OtherTokenAuthentication

Properties

Name Type Description Notes
token str
type AuthenticationType

Example

from thousandeyes_sdk.connectors.models.other_token_authentication import OtherTokenAuthentication

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

# convert the object into a dict
other_token_authentication_dict = other_token_authentication_instance.to_dict()
# create an instance of OtherTokenAuthentication from a dict
other_token_authentication_from_dict = OtherTokenAuthentication.from_dict(other_token_authentication_dict)

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