Interface ChatAINodeParameters

Source
interface ChatAINodeParameters {
    message?: string;
    options?:
        | {
            limitWaitTime?: {
                values: {
                    limitType?: | "afterTimeInterval"
                    | "atSpecifiedTime";
                    maxDateAndTime?: string;
                    resumeAmount?: number;
                    resumeUnit?: "minutes"
                    | "hours"
                    | "days";
                };
            };
            memoryConnection?: boolean;
        }
        | {
            limitWaitTime?: {
                values: {
                    limitType?: | "afterTimeInterval"
                    | "atSpecifiedTime";
                    maxDateAndTime?: string;
                    resumeAmount?: number;
                    resumeUnit?: "minutes"
                    | "hours"
                    | "days";
                };
            };
        };
    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;
    }
    | {
        limitWaitTime?: {
            values: {
                limitType?: | "afterTimeInterval"
                | "atSpecifiedTime";
                maxDateAndTime?: string;
                resumeAmount?: number;
                resumeUnit?: "minutes"
                | "hours"
                | "days";
            };
        };
    }

Default: {}

Source§

readonly waitUserReply?: boolean

Default: true