interface FileContentResponse {
    text?: string;
    type?: string;
}

Properties

text?: string

The text content

type?: string

The content type (currently only "text")

""