Represents a Scaleway file.

interface ScwFile {
    content: string;
    contentType: string;
    name: string;
}

Properties

content: string

Content of the file in base64.

contentType: string

Content-type of the file.

name: string

Name of the file.