/** * 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 { ProductRangeLiteResource } from './ProductRangeLiteResource'; /** * * @export * @interface PaginatedProductRangeLiteResourceResponse */ export interface PaginatedProductRangeLiteResourceResponse { /** * * @type {Array} * @memberof PaginatedProductRangeLiteResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductRangeLiteResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductRangeLiteResourceResponse interface. */ export declare function instanceOfPaginatedProductRangeLiteResourceResponse(value: object): value is PaginatedProductRangeLiteResourceResponse; export declare function PaginatedProductRangeLiteResourceResponseFromJSON(json: any): PaginatedProductRangeLiteResourceResponse; export declare function PaginatedProductRangeLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductRangeLiteResourceResponse; export declare function PaginatedProductRangeLiteResourceResponseToJSON(json: any): PaginatedProductRangeLiteResourceResponse; export declare function PaginatedProductRangeLiteResourceResponseToJSONTyped(value?: PaginatedProductRangeLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;