Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.17 KB

File metadata and controls

28 lines (20 loc) · 1.17 KB

ListWorkspaceIntegrationsResponse

Properties

Name Type Description Notes
integration_infos List[IntegrationInfo] [optional]

Example

from ri.apiclient.models.list_workspace_integrations_response import ListWorkspaceIntegrationsResponse

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

# convert the object into a dict
list_workspace_integrations_response_dict = list_workspace_integrations_response_instance.to_dict()
# create an instance of ListWorkspaceIntegrationsResponse from a dict
list_workspace_integrations_response_from_dict = ListWorkspaceIntegrationsResponse.from_dict(list_workspace_integrations_response_dict)

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