You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The OAuth 2.0 client secret string. The client secret string is returned in the response of a Secret creation request. In other responses (such as list, activate, or deactivate requests), the client secret is returned as an undisclosed hashed value.
[readonly]
created
str
Timestamp when the API Service Integration instance Secret was created
[readonly]
id
str
The ID of the API Service Integration instance Secret
[readonly]
last_updated
str
Timestamp when the API Service Integration instance Secret was updated
[readonly]
secret_hash
str
OAuth 2.0 client secret string hash
[readonly]
status
str
Status of the API Service Integration instance Secret
fromokta.models.api_service_integration_instance_secretimportAPIServiceIntegrationInstanceSecret# TODO update the JSON string belowjson="{}"# create an instance of APIServiceIntegrationInstanceSecret from a JSON stringapi_service_integration_instance_secret_instance=APIServiceIntegrationInstanceSecret.from_json(json)
# print the JSON string representation of the objectprint(APIServiceIntegrationInstanceSecret.to_json())
# convert the object into a dictapi_service_integration_instance_secret_dict=api_service_integration_instance_secret_instance.to_dict()
# create an instance of APIServiceIntegrationInstanceSecret from a dictapi_service_integration_instance_secret_from_dict=APIServiceIntegrationInstanceSecret.from_dict(api_service_integration_instance_secret_dict)