/** * 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 { CartResource } from './CartResource'; /** * * @export * @interface CartResourceArrayResponse */ export interface CartResourceArrayResponse { /** * * @type {Array} * @memberof CartResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the CartResourceArrayResponse interface. */ export declare function instanceOfCartResourceArrayResponse(value: object): value is CartResourceArrayResponse; export declare function CartResourceArrayResponseFromJSON(json: any): CartResourceArrayResponse; export declare function CartResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CartResourceArrayResponse; export declare function CartResourceArrayResponseToJSON(json: any): CartResourceArrayResponse; export declare function CartResourceArrayResponseToJSONTyped(value?: CartResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;