/** * 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 { ProductLiteResource } from './ProductLiteResource'; /** * * @export * @interface PaginatedProductLiteResourceResponse */ export interface PaginatedProductLiteResourceResponse { /** * * @type {Array} * @memberof PaginatedProductLiteResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductLiteResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductLiteResourceResponse interface. */ export declare function instanceOfPaginatedProductLiteResourceResponse(value: object): value is PaginatedProductLiteResourceResponse; export declare function PaginatedProductLiteResourceResponseFromJSON(json: any): PaginatedProductLiteResourceResponse; export declare function PaginatedProductLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductLiteResourceResponse; export declare function PaginatedProductLiteResourceResponseToJSON(json: any): PaginatedProductLiteResourceResponse; export declare function PaginatedProductLiteResourceResponseToJSONTyped(value?: PaginatedProductLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;