Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.38 KB

File metadata and controls

32 lines (23 loc) · 1.38 KB

IntegrationHubFlowWithConfig

Properties

Name Type Description Notes
application_id int ID of application the flow is registered for. [optional]
event_type str The event type we want to register a flow for.
integration_hub_flow_url str The URL of the integration hub flow that we want to trigger for the event.
config IntegrationHubFlowConfig

Example

from talon_one.models.integration_hub_flow_with_config import IntegrationHubFlowWithConfig

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

# convert the object into a dict
integration_hub_flow_with_config_dict = integration_hub_flow_with_config_instance.to_dict()
# create an instance of IntegrationHubFlowWithConfig from a dict
integration_hub_flow_with_config_from_dict = IntegrationHubFlowWithConfig.from_dict(integration_hub_flow_with_config_dict)

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