/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface DocumentFileForUploadResource */ export interface DocumentFileForUploadResource { /** * * @type {number} * @memberof DocumentFileForUploadResource */ id: number; /** * * @type {string} * @memberof DocumentFileForUploadResource */ url: string; /** * * @type {Array} * @memberof DocumentFileForUploadResource */ headers: Array; /** * * @type {string} * @memberof DocumentFileForUploadResource */ fileName: string; } /** * Check if a given object implements the DocumentFileForUploadResource interface. */ export declare function instanceOfDocumentFileForUploadResource(value: object): value is DocumentFileForUploadResource; export declare function DocumentFileForUploadResourceFromJSON(json: any): DocumentFileForUploadResource; export declare function DocumentFileForUploadResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentFileForUploadResource; export declare function DocumentFileForUploadResourceToJSON(json: any): DocumentFileForUploadResource; export declare function DocumentFileForUploadResourceToJSONTyped(value?: DocumentFileForUploadResource | null, ignoreDiscriminator?: boolean): any;