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 name of the API service integration that corresponds with the `type` property. This is the full name of the API service integration listed in the Okta Integration Network (OIN) catalog.
The type of the API service integration. This string is an underscore-concatenated, lowercased API service integration name. For example, `my_api_log_integration`.
fromokta.models.api_service_integration_instanceimportAPIServiceIntegrationInstance# TODO update the JSON string belowjson="{}"# create an instance of APIServiceIntegrationInstance from a JSON stringapi_service_integration_instance_instance=APIServiceIntegrationInstance.from_json(json)
# print the JSON string representation of the objectprint(APIServiceIntegrationInstance.to_json())
# convert the object into a dictapi_service_integration_instance_dict=api_service_integration_instance_instance.to_dict()
# create an instance of APIServiceIntegrationInstance from a dictapi_service_integration_instance_from_dict=APIServiceIntegrationInstance.from_dict(api_service_integration_instance_dict)