interface DocumentDelta {
    data?: string;
    mime_type?: string;
    type: "document";
    uri?: string;
}

Properties

data?: string
mime_type?: string
type: "document"

Used as the OpenAPI type discriminator for the content oneof.

uri?: string