/** * 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 { LineItemDiscountResource } from './LineItemDiscountResource'; /** * * @export * @interface LineItemDiscountResourceArrayResponse */ export interface LineItemDiscountResourceArrayResponse { /** * * @type {Array} * @memberof LineItemDiscountResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the LineItemDiscountResourceArrayResponse interface. */ export declare function instanceOfLineItemDiscountResourceArrayResponse(value: object): value is LineItemDiscountResourceArrayResponse; export declare function LineItemDiscountResourceArrayResponseFromJSON(json: any): LineItemDiscountResourceArrayResponse; export declare function LineItemDiscountResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LineItemDiscountResourceArrayResponse; export declare function LineItemDiscountResourceArrayResponseToJSON(json: any): LineItemDiscountResourceArrayResponse; export declare function LineItemDiscountResourceArrayResponseToJSONTyped(value?: LineItemDiscountResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;