FileContents: {
    contents: string;
    fileType: string;
    name: string;
} | {
    contents: undefined;
    fileType: undefined;
    name: undefined;
}

The file properties. Either all properties will be set or undefined.