/** * 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 { OrderFulfillmentResource } from './OrderFulfillmentResource'; /** * * @export * @interface OrderFulfillmentResourceArrayResponse */ export interface OrderFulfillmentResourceArrayResponse { /** * * @type {Array} * @memberof OrderFulfillmentResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the OrderFulfillmentResourceArrayResponse interface. */ export declare function instanceOfOrderFulfillmentResourceArrayResponse(value: object): value is OrderFulfillmentResourceArrayResponse; export declare function OrderFulfillmentResourceArrayResponseFromJSON(json: any): OrderFulfillmentResourceArrayResponse; export declare function OrderFulfillmentResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderFulfillmentResourceArrayResponse; export declare function OrderFulfillmentResourceArrayResponseToJSON(json: any): OrderFulfillmentResourceArrayResponse; export declare function OrderFulfillmentResourceArrayResponseToJSONTyped(value?: OrderFulfillmentResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;