/** * 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 { ProductListResource } from './ProductListResource'; /** * * @export * @interface ProductListResourceArrayResponse */ export interface ProductListResourceArrayResponse { /** * * @type {Array} * @memberof ProductListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductListResourceArrayResponse interface. */ export declare function instanceOfProductListResourceArrayResponse(value: object): value is ProductListResourceArrayResponse; export declare function ProductListResourceArrayResponseFromJSON(json: any): ProductListResourceArrayResponse; export declare function ProductListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductListResourceArrayResponse; export declare function ProductListResourceArrayResponseToJSON(json: any): ProductListResourceArrayResponse; export declare function ProductListResourceArrayResponseToJSONTyped(value?: ProductListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;