/** * 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 { CouponResource } from './CouponResource'; /** * * @export * @interface CouponResourceArrayResponse */ export interface CouponResourceArrayResponse { /** * * @type {Array} * @memberof CouponResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the CouponResourceArrayResponse interface. */ export declare function instanceOfCouponResourceArrayResponse(value: object): value is CouponResourceArrayResponse; export declare function CouponResourceArrayResponseFromJSON(json: any): CouponResourceArrayResponse; export declare function CouponResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CouponResourceArrayResponse; export declare function CouponResourceArrayResponseToJSON(json: any): CouponResourceArrayResponse; export declare function CouponResourceArrayResponseToJSONTyped(value?: CouponResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;