/** * 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 { ProductRangeFrontendListResource } from './ProductRangeFrontendListResource'; /** * * @export * @interface PaginatedProductRangeFrontendListResourceResponse */ export interface PaginatedProductRangeFrontendListResourceResponse { /** * * @type {Array} * @memberof PaginatedProductRangeFrontendListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductRangeFrontendListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductRangeFrontendListResourceResponse interface. */ export declare function instanceOfPaginatedProductRangeFrontendListResourceResponse(value: object): value is PaginatedProductRangeFrontendListResourceResponse; export declare function PaginatedProductRangeFrontendListResourceResponseFromJSON(json: any): PaginatedProductRangeFrontendListResourceResponse; export declare function PaginatedProductRangeFrontendListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductRangeFrontendListResourceResponse; export declare function PaginatedProductRangeFrontendListResourceResponseToJSON(json: any): PaginatedProductRangeFrontendListResourceResponse; export declare function PaginatedProductRangeFrontendListResourceResponseToJSONTyped(value?: PaginatedProductRangeFrontendListResourceResponse | null, ignoreDiscriminator?: boolean): any;