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 ID of the account to which this configuration belongs.
type_id
int
The outgoing integration type ID.
policy
object
The outgoing integration policy specific to each integration type.
Example
fromtalon_one.models.outgoing_integration_configurationimportOutgoingIntegrationConfiguration# TODO update the JSON string belowjson="{}"# create an instance of OutgoingIntegrationConfiguration from a JSON stringoutgoing_integration_configuration_instance=OutgoingIntegrationConfiguration.from_json(json)
# print the JSON string representation of the objectprint(OutgoingIntegrationConfiguration.to_json())
# convert the object into a dictoutgoing_integration_configuration_dict=outgoing_integration_configuration_instance.to_dict()
# create an instance of OutgoingIntegrationConfiguration from a dictoutgoing_integration_configuration_from_dict=OutgoingIntegrationConfiguration.from_dict(outgoing_integration_configuration_dict)