/** * 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 { CartListResource } from './CartListResource'; /** * * @export * @interface CartListResourceArrayResponse */ export interface CartListResourceArrayResponse { /** * * @type {Array} * @memberof CartListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the CartListResourceArrayResponse interface. */ export declare function instanceOfCartListResourceArrayResponse(value: object): value is CartListResourceArrayResponse; export declare function CartListResourceArrayResponseFromJSON(json: any): CartListResourceArrayResponse; export declare function CartListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CartListResourceArrayResponse; export declare function CartListResourceArrayResponseToJSON(json: any): CartListResourceArrayResponse; export declare function CartListResourceArrayResponseToJSONTyped(value?: CartListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;