interface File {
    name: string;
    content: string;
    mimeType: string;
}

Properties

Properties

name: string

The name of the file with file extension (e.g., "file.csv")

content: string

The base64-encoded bytes of the file content

mimeType: string

The mime type of the file (e.g., "image/png")