/** * 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 DocumentLiteResource */ export interface DocumentLiteResource { /** * * @type {number} * @memberof DocumentLiteResource */ id?: number | null; /** * * @type {string} * @memberof DocumentLiteResource */ name: string; /** * * @type {string} * @memberof DocumentLiteResource */ tag?: string | null; } /** * Check if a given object implements the DocumentLiteResource interface. */ export declare function instanceOfDocumentLiteResource(value: object): value is DocumentLiteResource; export declare function DocumentLiteResourceFromJSON(json: any): DocumentLiteResource; export declare function DocumentLiteResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentLiteResource; export declare function DocumentLiteResourceToJSON(json: any): DocumentLiteResource; export declare function DocumentLiteResourceToJSONTyped(value?: DocumentLiteResource | null, ignoreDiscriminator?: boolean): any;