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