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**: for the acquiring fee incurred on a transaction. * **AdyenCommission**: for 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**: for all the transaction fees due to Adyen. This is the sum of Adyen's commission and Adyen's markup. * **AdyenMarkup**: for the transaction fee due to Adyen under [Interchange++ pricing](https://www.adyen.com/pricing). * **BalanceAccount**: or the sale amount of a transaction. * **Commission**: for your platform's commission on a transaction. * **Interchange**: for the interchange fee (fee paid to the issuer) incurred on a transaction. * **PaymentFee**: for all of the transaction fees. * **Remainder**: for the left over amount after currency conversion. * **SchemeFee**: for the scheme fee incurred on a transaction. This is the sum of the interchange fees and the acquiring fees. * **Surcharge**: for the surcharge paid by the customer on a transaction. * **Tip**: for the tip paid by the customer. * **TopUp**: for an incoming transfer to top up your user's balance account. * **VAT**: for the Value Added Tax.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACQUIRINGFEESADYENCOMMISSIONADYENFEESADYENMARKUPBALANCEACCOUNTCOMMISSIONDEFAULTINTERCHANGEPAYMENTFEEREMAINDERSCHEMEFEESURCHARGETIPTOPUPVAT
-
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
-
COMMISSION
public static final PlatformPayment.PlatformPaymentTypeEnum COMMISSION
-
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)
-
-