/** * 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 { ProductRangeListResource } from './ProductRangeListResource'; /** * * @export * @interface ProductRangeListResourceArrayResponse */ export interface ProductRangeListResourceArrayResponse { /** * * @type {Array} * @memberof ProductRangeListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductRangeListResourceArrayResponse interface. */ export declare function instanceOfProductRangeListResourceArrayResponse(value: object): value is ProductRangeListResourceArrayResponse; export declare function ProductRangeListResourceArrayResponseFromJSON(json: any): ProductRangeListResourceArrayResponse; export declare function ProductRangeListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductRangeListResourceArrayResponse; export declare function ProductRangeListResourceArrayResponseToJSON(json: any): ProductRangeListResourceArrayResponse; export declare function ProductRangeListResourceArrayResponseToJSONTyped(value?: ProductRangeListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;