/** * 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 { OrderStatusWithCountResource } from './OrderStatusWithCountResource'; /** * * @export * @interface OrderStatusWithCountResourceArrayResponse */ export interface OrderStatusWithCountResourceArrayResponse { /** * * @type {Array} * @memberof OrderStatusWithCountResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the OrderStatusWithCountResourceArrayResponse interface. */ export declare function instanceOfOrderStatusWithCountResourceArrayResponse(value: object): value is OrderStatusWithCountResourceArrayResponse; export declare function OrderStatusWithCountResourceArrayResponseFromJSON(json: any): OrderStatusWithCountResourceArrayResponse; export declare function OrderStatusWithCountResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderStatusWithCountResourceArrayResponse; export declare function OrderStatusWithCountResourceArrayResponseToJSON(json: any): OrderStatusWithCountResourceArrayResponse; export declare function OrderStatusWithCountResourceArrayResponseToJSONTyped(value?: OrderStatusWithCountResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;