| Name |
Type |
Description |
Notes |
| additional_parameters |
Dict[str, str] |
|
[optional] |
| client_id |
str |
|
|
| client_secret |
str |
|
|
| grant_type |
str |
|
[optional] |
| password |
str |
|
[optional] |
| token_url |
str |
|
|
| username |
str |
|
[optional] |
from instana_client.models.o_auth_config import OAuthConfig
# TODO update the JSON string below
json = "{}"
# create an instance of OAuthConfig from a JSON string
o_auth_config_instance = OAuthConfig.from_json(json)
# print the JSON string representation of the object
print(OAuthConfig.to_json())
# convert the object into a dict
o_auth_config_dict = o_auth_config_instance.to_dict()
# create an instance of OAuthConfig from a dict
o_auth_config_from_dict = OAuthConfig.from_dict(o_auth_config_dict)
[Back to Model list] [Back to API list] [Back to README]