Hierarchy

  • GmailBaseTool
    • GmailSendMessage

Constructors

Properties

Constructors

Properties

description: string = GET_MESSAGE_DESCRIPTION
name: string = "gmail_send_message"
schema: ZodObject<{
    bcc: ZodOptional<ZodArray<ZodString, "many">>;
    cc: ZodOptional<ZodArray<ZodString, "many">>;
    message: ZodString;
    subject: ZodString;
    to: ZodArray<ZodString, "many">;
}, "strip", ZodTypeAny, {
    message: string;
    subject: string;
    to: string[];
    bcc?: string[];
    cc?: string[];
}, {
    message: string;
    subject: string;
    to: string[];
    bcc?: string[];
    cc?: string[];
}> = ...
gmail: Gmail