/** * 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 { ProductRangeListResource } from './ProductRangeListResource'; /** * * @export * @interface PaginatedProductRangeListResourceResponse */ export interface PaginatedProductRangeListResourceResponse { /** * * @type {Array} * @memberof PaginatedProductRangeListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductRangeListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductRangeListResourceResponse interface. */ export declare function instanceOfPaginatedProductRangeListResourceResponse(value: object): value is PaginatedProductRangeListResourceResponse; export declare function PaginatedProductRangeListResourceResponseFromJSON(json: any): PaginatedProductRangeListResourceResponse; export declare function PaginatedProductRangeListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductRangeListResourceResponse; export declare function PaginatedProductRangeListResourceResponseToJSON(json: any): PaginatedProductRangeListResourceResponse; export declare function PaginatedProductRangeListResourceResponseToJSONTyped(value?: PaginatedProductRangeListResourceResponse | null, ignoreDiscriminator?: boolean): any;