Enum PlatformPayment.PlatformPaymentTypeEnum
- java.lang.Object
-
- java.lang.Enum<PlatformPayment.PlatformPaymentTypeEnum>
-
- com.adyen.model.transactionwebhooks.PlatformPayment.PlatformPaymentTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<PlatformPayment.PlatformPaymentTypeEnum>
- Enclosing class:
- PlatformPayment
public static enum PlatformPayment.PlatformPaymentTypeEnum extends Enum<PlatformPayment.PlatformPaymentTypeEnum>
Specifies the nature of the transfer. This parameter helps categorize transfers so you can reconcile transactions at a later time, using the Balance Platform Accounting Report for [marketplaces](https://docs.adyen.com/marketplaces/reports-and-fees/balance-platform-accounting-report/) or [platforms](https://docs.adyen.com/platforms/reports-and-fees/balance-platform-accounting-report/). Possible values: * **AcquiringFees**: The acquiring fee (the aggregated amount of interchange and scheme fee) incurred on a transaction. * **AdyenCommission**: The transaction fee due to Adyen under [blended rates](https://www.adyen.com/knowledge-hub/guides/payments-training-guide/get-the-best-from-your-card-processing). * **AdyenFees**: All transaction fees due to Adyen. This is the aggregated amount of Adyen's commission and markup. * **AdyenMarkup**: The transaction fee due to Adyen under [Interchange++ pricing](https://www.adyen.com/pricing). * **BalanceAccount**: The amount booked to your user after the deduction of the relevant fees. * **Commission**: Your platform's or marketplace's commission on a transaction. * **DCCPlatformCommission**: **deprecated** The Dynamic Currency Conversion (DCC) fee on a transaction. * **DCCMarkup**: The Dynamic Currency Conversion (DCC) fee on a transaction. * **Interchange**: The interchange fee (fee paid to the issuer) incurred on a transaction. * **PaymentFee**: The aggregated amount of all transaction fees. * **Remainder**: The leftover amount after currency conversion. * **SchemeFee**: The scheme fee incurred on a transaction. * **Surcharge**: The surcharge paid by the customer on a transaction. * **Tip**: The tip paid by the customer. * **TopUp**: An incoming transfer to top up your user's balance account. * **VAT**: The value-added tax charged on the payment.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACQUIRINGFEESADYENCOMMISSIONADYENFEESADYENMARKUPBALANCEACCOUNTCHARGEBACKREMAINDERCOMMISSIONDCCMARKUPDCCPLATFORMCOMMISSIONDEFAULTINTERCHANGEPAYMENTFEEREMAINDERSCHEMEFEESURCHARGETIPTOPUPVAT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PlatformPayment.PlatformPaymentTypeEnumfromValue(String value)StringgetValue()StringtoString()static PlatformPayment.PlatformPaymentTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static PlatformPayment.PlatformPaymentTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACQUIRINGFEES
public static final PlatformPayment.PlatformPaymentTypeEnum ACQUIRINGFEES
-
ADYENCOMMISSION
public static final PlatformPayment.PlatformPaymentTypeEnum ADYENCOMMISSION
-
ADYENFEES
public static final PlatformPayment.PlatformPaymentTypeEnum ADYENFEES
-
ADYENMARKUP
public static final PlatformPayment.PlatformPaymentTypeEnum ADYENMARKUP
-
BALANCEACCOUNT
public static final PlatformPayment.PlatformPaymentTypeEnum BALANCEACCOUNT
-
CHARGEBACKREMAINDER
public static final PlatformPayment.PlatformPaymentTypeEnum CHARGEBACKREMAINDER
-
COMMISSION
public static final PlatformPayment.PlatformPaymentTypeEnum COMMISSION
-
DCCMARKUP
public static final PlatformPayment.PlatformPaymentTypeEnum DCCMARKUP
-
DCCPLATFORMCOMMISSION
public static final PlatformPayment.PlatformPaymentTypeEnum DCCPLATFORMCOMMISSION
-
DEFAULT
public static final PlatformPayment.PlatformPaymentTypeEnum DEFAULT
-
INTERCHANGE
public static final PlatformPayment.PlatformPaymentTypeEnum INTERCHANGE
-
PAYMENTFEE
public static final PlatformPayment.PlatformPaymentTypeEnum PAYMENTFEE
-
REMAINDER
public static final PlatformPayment.PlatformPaymentTypeEnum REMAINDER
-
SCHEMEFEE
public static final PlatformPayment.PlatformPaymentTypeEnum SCHEMEFEE
-
SURCHARGE
public static final PlatformPayment.PlatformPaymentTypeEnum SURCHARGE
-
TIP
public static final PlatformPayment.PlatformPaymentTypeEnum TIP
-
TOPUP
public static final PlatformPayment.PlatformPaymentTypeEnum TOPUP
-
VAT
public static final PlatformPayment.PlatformPaymentTypeEnum VAT
-
-
Method Detail
-
values
public static PlatformPayment.PlatformPaymentTypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PlatformPayment.PlatformPaymentTypeEnum c : PlatformPayment.PlatformPaymentTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlatformPayment.PlatformPaymentTypeEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<PlatformPayment.PlatformPaymentTypeEnum>
-
fromValue
public static PlatformPayment.PlatformPaymentTypeEnum fromValue(String value)
-
-