/** * 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 { AppliedCouponResource } from './AppliedCouponResource'; /** * * @export * @interface AppliedCouponResourceArrayResponse */ export interface AppliedCouponResourceArrayResponse { /** * * @type {Array} * @memberof AppliedCouponResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the AppliedCouponResourceArrayResponse interface. */ export declare function instanceOfAppliedCouponResourceArrayResponse(value: object): value is AppliedCouponResourceArrayResponse; export declare function AppliedCouponResourceArrayResponseFromJSON(json: any): AppliedCouponResourceArrayResponse; export declare function AppliedCouponResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppliedCouponResourceArrayResponse; export declare function AppliedCouponResourceArrayResponseToJSON(json: any): AppliedCouponResourceArrayResponse; export declare function AppliedCouponResourceArrayResponseToJSONTyped(value?: AppliedCouponResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;