/** * 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 ProductRangeSearchResponseResourceMeta */ export interface ProductRangeSearchResponseResourceMeta { /** * * @type {number} * @memberof ProductRangeSearchResponseResourceMeta */ currentPage: number; /** * * @type {number} * @memberof ProductRangeSearchResponseResourceMeta */ perPage: number; /** * * @type {number} * @memberof ProductRangeSearchResponseResourceMeta */ total: number; /** * * @type {number} * @memberof ProductRangeSearchResponseResourceMeta */ lastPage: number; } /** * Check if a given object implements the ProductRangeSearchResponseResourceMeta interface. */ export declare function instanceOfProductRangeSearchResponseResourceMeta(value: object): value is ProductRangeSearchResponseResourceMeta; export declare function ProductRangeSearchResponseResourceMetaFromJSON(json: any): ProductRangeSearchResponseResourceMeta; export declare function ProductRangeSearchResponseResourceMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductRangeSearchResponseResourceMeta; export declare function ProductRangeSearchResponseResourceMetaToJSON(json: any): ProductRangeSearchResponseResourceMeta; export declare function ProductRangeSearchResponseResourceMetaToJSONTyped(value?: ProductRangeSearchResponseResourceMeta | null, ignoreDiscriminator?: boolean): any;