Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

OutgoingIntegrationTypes

Properties

Name Type Description Notes
data List[OutgoingIntegrationType] List of outgoing integrations. [optional]

Example

from talon_one.models.outgoing_integration_types import OutgoingIntegrationTypes

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

# convert the object into a dict
outgoing_integration_types_dict = outgoing_integration_types_instance.to_dict()
# create an instance of OutgoingIntegrationTypes from a dict
outgoing_integration_types_from_dict = OutgoingIntegrationTypes.from_dict(outgoing_integration_types_dict)

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