Class FlowInstancesAccessor

Hierarchy (view full)

Constructors

Properties

Methods

Constructors

Properties

client: IntegrationAppApiClient

Methods

  • Parameters

    • data: {
          name?: string;
          userId?: string;
          flowId?: string;
          connectionId?: string;
          integrationId?: string;
          instanceKey?: string;
          parameters?: any;
          nodes?: Record<string, {
              name?: string;
              type?: string;
              userConfig?: any;
              config?: any;
              onError?: "stop" | "continue";
              concurrency?: number;
              ui?: any;
              links?: {
                  key?: string;
                  filter?: any;
                  name?: string;
              }[];
              isCustomized?: boolean;
          }>;
          enabled?: boolean;
          customized?: {
              name?: boolean;
              nodes?: boolean;
          };
      }
      • Optionalname?: string
      • OptionaluserId?: string
      • OptionalflowId?: string
      • OptionalconnectionId?: string
      • OptionalintegrationId?: string
      • OptionalinstanceKey?: string
      • Optionalparameters?: any
      • Optionalnodes?: Record<string, {
            name?: string;
            type?: string;
            userConfig?: any;
            config?: any;
            onError?: "stop" | "continue";
            concurrency?: number;
            ui?: any;
            links?: {
                key?: string;
                filter?: any;
                name?: string;
            }[];
            isCustomized?: boolean;
        }>
      • Optionalenabled?: boolean
      • Optionalcustomized?: {
            name?: boolean;
            nodes?: boolean;
        }
        • Optionalname?: boolean
        • Optionalnodes?: boolean

    Returns Promise<FlowInstance>