Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.26 KB

File metadata and controls

29 lines (20 loc) · 1.26 KB

SwitchboardIntegrationListResponse

Properties

Name Type Description Notes
switchboard_integrations List[SwitchboardIntegration] List of returned switchboard integrations. [optional]

Example

from sunshine_conversations_client.model.switchboard_integration_list_response import SwitchboardIntegrationListResponse

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

# convert the object into a dict
switchboard_integration_list_response_dict = switchboard_integration_list_response_instance.to_dict()
# create an instance of SwitchboardIntegrationListResponse from a dict
switchboard_integration_list_response_from_dict = SwitchboardIntegrationListResponse.from_dict(switchboard_integration_list_response_dict)

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