/** * 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 { CartListResource } from './CartListResource'; /** * * @export * @interface PaginatedCartListResourceResponse */ export interface PaginatedCartListResourceResponse { /** * * @type {Array} * @memberof PaginatedCartListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedCartListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedCartListResourceResponse interface. */ export declare function instanceOfPaginatedCartListResourceResponse(value: object): value is PaginatedCartListResourceResponse; export declare function PaginatedCartListResourceResponseFromJSON(json: any): PaginatedCartListResourceResponse; export declare function PaginatedCartListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedCartListResourceResponse; export declare function PaginatedCartListResourceResponseToJSON(json: any): PaginatedCartListResourceResponse; export declare function PaginatedCartListResourceResponseToJSONTyped(value?: PaginatedCartListResourceResponse | null, ignoreDiscriminator?: boolean): any;