/** * PayPal Server SDKLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; import { Money } from './money.js'; /** The incentive details. */ export interface IncentiveDetails { /** The type of incentive, such as a special offer or coupon. */ incentiveType?: string; /** The code that identifies an incentive, such as a coupon. */ incentiveCode?: string; /** The currency and amount for a financial transaction, such as a balance or payment due. */ incentiveAmount?: Money; /** The incentive program code that identifies a merchant loyalty or incentive program. */ incentiveProgramCode?: string; } export declare const incentiveDetailsSchema: Schema; //# sourceMappingURL=incentiveDetails.d.ts.map