SendMessageSchema#

class langchain_google_community.gmail.send_message.SendMessageSchema[source]#

Bases: BaseModel

Input for SendMessageTool.

Create a new model by parsing and validating input data from keyword arguments.

Raises ValidationError if the input data cannot be parsed to form a valid model.

param bcc: str | List[str] | None = None#

The list of BCC recipients.

param cc: str | List[str] | None = None#

The list of CC recipients.

param message: str [Required]#

The message to send.

param subject: str [Required]#

The subject of the message.

param to: str | List[str] [Required]#

The list of recipients.