Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1010 Bytes

File metadata and controls

30 lines (21 loc) · 1010 Bytes

OAuthIntegration

Properties

Name Type Description Notes
config OAuthConfig [optional]
token OAuthToken [optional]

Example

from instana_client.models.o_auth_integration import OAuthIntegration

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

# convert the object into a dict
o_auth_integration_dict = o_auth_integration_instance.to_dict()
# create an instance of OAuthIntegration from a dict
o_auth_integration_from_dict = OAuthIntegration.from_dict(o_auth_integration_dict)

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