GetActiveTriggerResponse: {
    connectionId?: string;
    createdAt?: string;
    disabledAt?: string;
    id?: string;
    state?: {
        [key: string]: unknown;
    };
    triggerConfig?: {
        [key: string]: unknown;
    };
    triggerData?: string;
    triggerName?: string;
    updatedAt?: string;
}

Type declaration

  • Optional connectionId?: string

    Identifier for the connection associated with the trigger.

  • Optional createdAt?: string

    Timestamp when the trigger was created.

  • Optional disabledAt?: string

    Timestamp when the trigger was disabled, if applicable.

  • Optional id?: string

    Unique identifier for the trigger.

  • Optional state?: {
        [key: string]: unknown;
    }

    State information for the trigger.

    • [key: string]: unknown
  • Optional triggerConfig?: {
        [key: string]: unknown;
    }

    Configuration settings for the trigger.

    • [key: string]: unknown
  • Optional triggerData?: string

    Data associated with the trigger.

  • Optional triggerName?: string

    Name of the trigger.

  • Optional updatedAt?: string

    Timestamp when the trigger was last updated.