/** * 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. */ /** * * @export * @interface AppliedCouponResource */ export interface AppliedCouponResource { /** * * @type {number} * @memberof AppliedCouponResource */ id: number; /** * * @type {string} * @memberof AppliedCouponResource */ code: string; /** * * @type {string} * @memberof AppliedCouponResource */ name: string; /** * * @type {string} * @memberof AppliedCouponResource */ type: string; /** * * @type {string} * @memberof AppliedCouponResource */ discountType: string; /** * * @type {number} * @memberof AppliedCouponResource */ discountAmount: number; /** * * @type {number} * @memberof AppliedCouponResource */ minAmount: number; /** * * @type {number} * @memberof AppliedCouponResource */ minProducts: number; /** * * @type {number} * @memberof AppliedCouponResource */ discountTotal: number; } /** * Check if a given object implements the AppliedCouponResource interface. */ export declare function instanceOfAppliedCouponResource(value: object): value is AppliedCouponResource; export declare function AppliedCouponResourceFromJSON(json: any): AppliedCouponResource; export declare function AppliedCouponResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AppliedCouponResource; export declare function AppliedCouponResourceToJSON(json: any): AppliedCouponResource; export declare function AppliedCouponResourceToJSONTyped(value?: AppliedCouponResource | null, ignoreDiscriminator?: boolean): any;