/** * Finix API */ import { RequestFile } from './models'; export declare class UploadFileRequest { /** * Path to the file you want to upload
(e.g. **_/Users/Desktop/finix_file.png**). */ 'file'?: RequestFile; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }