package com.paypal.api.payments; import com.paypal.base.rest.PayPalModel; import lombok.EqualsAndHashCode; import lombok.Getter; import lombok.Setter; import lombok.experimental.Accessors; @Getter @Setter @EqualsAndHashCode(callSuper = true) @Accessors(chain = true) public class Incentive extends PayPalModel { /** * Identifier of the instrument in PayPal Wallet */ private String id; /** * Code that identifies the incentive. */ private String code; /** * Name of the incentive. */ private String name; /** * Description of the incentive. */ private String description; /** * Indicates incentive is applicable for this minimum purchase amount. */ private Currency minimumPurchaseAmount; /** * Logo image url for the incentive. */ private String logoImageUrl; /** * expiry date of the incentive. */ private String expiryDate; /** * Specifies type of incentive */ private String type; /** * URI to the associated terms */ private String terms; /** * Default Constructor */ public Incentive() { } }