/** * 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 { PagingMetadata } from './PagingMetadata'; import type { ProductClassLiteResource } from './ProductClassLiteResource'; /** * * @export * @interface PaginatedProductClassLiteResourceResponse */ export interface PaginatedProductClassLiteResourceResponse { /** * * @type {Array} * @memberof PaginatedProductClassLiteResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductClassLiteResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductClassLiteResourceResponse interface. */ export declare function instanceOfPaginatedProductClassLiteResourceResponse(value: object): value is PaginatedProductClassLiteResourceResponse; export declare function PaginatedProductClassLiteResourceResponseFromJSON(json: any): PaginatedProductClassLiteResourceResponse; export declare function PaginatedProductClassLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductClassLiteResourceResponse; export declare function PaginatedProductClassLiteResourceResponseToJSON(json: any): PaginatedProductClassLiteResourceResponse; export declare function PaginatedProductClassLiteResourceResponseToJSONTyped(value?: PaginatedProductClassLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;