/** * 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. */ import type { SiteLiteResource } from './SiteLiteResource'; /** * * @export * @interface DocumentResource */ export interface DocumentResource { /** * * @type {number} * @memberof DocumentResource */ id?: number | null; /** * * @type {string} * @memberof DocumentResource */ name: string; /** * * @type {string} * @memberof DocumentResource */ tag?: string | null; /** * * @type {string} * @memberof DocumentResource */ fileId?: string | null; /** * * @type {string} * @memberof DocumentResource */ fileUrl: string; /** * * @type {Array} * @memberof DocumentResource */ sites: Array | null; /** * * @type {string} * @memberof DocumentResource */ createdAt?: string | null; /** * * @type {string} * @memberof DocumentResource */ updatedAt?: string | null; } /** * Check if a given object implements the DocumentResource interface. */ export declare function instanceOfDocumentResource(value: object): value is DocumentResource; export declare function DocumentResourceFromJSON(json: any): DocumentResource; export declare function DocumentResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentResource; export declare function DocumentResourceToJSON(json: any): DocumentResource; export declare function DocumentResourceToJSONTyped(value?: DocumentResource | null, ignoreDiscriminator?: boolean): any;