/** * 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 { OrderListResource } from './OrderListResource'; /** * * @export * @interface PaginatedOrderListResourceResponse */ export interface PaginatedOrderListResourceResponse { /** * * @type {Array} * @memberof PaginatedOrderListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedOrderListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedOrderListResourceResponse interface. */ export declare function instanceOfPaginatedOrderListResourceResponse(value: object): value is PaginatedOrderListResourceResponse; export declare function PaginatedOrderListResourceResponseFromJSON(json: any): PaginatedOrderListResourceResponse; export declare function PaginatedOrderListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedOrderListResourceResponse; export declare function PaginatedOrderListResourceResponseToJSON(json: any): PaginatedOrderListResourceResponse; export declare function PaginatedOrderListResourceResponseToJSONTyped(value?: PaginatedOrderListResourceResponse | null, ignoreDiscriminator?: boolean): any;