/** * 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 DocumentFrontendResource */ export interface DocumentFrontendResource { /** * * @type {number} * @memberof DocumentFrontendResource */ id?: number | null; /** * * @type {string} * @memberof DocumentFrontendResource */ name: string; /** * * @type {string} * @memberof DocumentFrontendResource */ fileUrl: string; } /** * Check if a given object implements the DocumentFrontendResource interface. */ export declare function instanceOfDocumentFrontendResource(value: object): value is DocumentFrontendResource; export declare function DocumentFrontendResourceFromJSON(json: any): DocumentFrontendResource; export declare function DocumentFrontendResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentFrontendResource; export declare function DocumentFrontendResourceToJSON(json: any): DocumentFrontendResource; export declare function DocumentFrontendResourceToJSONTyped(value?: DocumentFrontendResource | null, ignoreDiscriminator?: boolean): any;