thousandeyes-sdk-python/thousandeyes-sdk-connectors/docs/OauthClientCredentialsAuthentication.md
2026-02-02 14:36:36 +00:00

1.3 KiB

OauthClientCredentialsAuthentication

Properties

Name Type Description Notes
token str [optional]
oauth_client_id str
oauth_token_url str
oauth_client_secret str
type AuthenticationType

Example

from thousandeyes_sdk.connectors.models.oauth_client_credentials_authentication import OauthClientCredentialsAuthentication

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

# convert the object into a dict
oauth_client_credentials_authentication_dict = oauth_client_credentials_authentication_instance.to_dict()
# create an instance of OauthClientCredentialsAuthentication from a dict
oauth_client_credentials_authentication_from_dict = OauthClientCredentialsAuthentication.from_dict(oauth_client_credentials_authentication_dict)

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