Interface ChatAINodeParameters

Source
interface ChatAINodeParameters {
    message?: string;
    options?: {
        limitWaitTime?: {
            values: {
                limitType?:
                    | "afterTimeInterval"
                    | "atSpecifiedTime";
                maxDateAndTime?: string;
                resumeAmount?: number;
                resumeUnit?: "minutes"
                | "hours"
                | "days";
            };
        };
        memoryConnection?: boolean;
    };
    waitUserReply?: boolean;
}

Properties§

Source§

readonly message?: string

Type options: {"rows":6}

Source§

readonly options?: {
    limitWaitTime?: {
        values: {
            limitType?:
                | "afterTimeInterval"
                | "atSpecifiedTime";
            maxDateAndTime?: string;
            resumeAmount?: number;
            resumeUnit?: "minutes"
            | "hours"
            | "days";
        };
    };
    memoryConnection?: boolean;
}

Default: {}

Source§

readonly waitUserReply?: boolean

Default: true