Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.17 KB

File metadata and controls

29 lines (20 loc) · 1.17 KB

OutgoingIntegrationTemplates

Properties

Name Type Description Notes
data List[OutgoingIntegrationTemplate] The list of templates for a given outgoing integration type. [optional]

Example

from talon_one.models.outgoing_integration_templates import OutgoingIntegrationTemplates

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

# convert the object into a dict
outgoing_integration_templates_dict = outgoing_integration_templates_instance.to_dict()
# create an instance of OutgoingIntegrationTemplates from a dict
outgoing_integration_templates_from_dict = OutgoingIntegrationTemplates.from_dict(outgoing_integration_templates_dict)

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