/** * 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 { ProductRangeSearchResultResource } from './ProductRangeSearchResultResource'; /** * * @export * @interface PaginatedProductRangeSearchResultResourceResponse */ export interface PaginatedProductRangeSearchResultResourceResponse { /** * * @type {Array} * @memberof PaginatedProductRangeSearchResultResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductRangeSearchResultResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductRangeSearchResultResourceResponse interface. */ export declare function instanceOfPaginatedProductRangeSearchResultResourceResponse(value: object): value is PaginatedProductRangeSearchResultResourceResponse; export declare function PaginatedProductRangeSearchResultResourceResponseFromJSON(json: any): PaginatedProductRangeSearchResultResourceResponse; export declare function PaginatedProductRangeSearchResultResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductRangeSearchResultResourceResponse; export declare function PaginatedProductRangeSearchResultResourceResponseToJSON(json: any): PaginatedProductRangeSearchResultResourceResponse; export declare function PaginatedProductRangeSearchResultResourceResponseToJSONTyped(value?: PaginatedProductRangeSearchResultResourceResponse | null, ignoreDiscriminator?: boolean): any;