Uses of Class
com.adyen.model.transfers.BalanceMutation
-
Packages that use BalanceMutation Package Description com.adyen.model.transfers -
-
Uses of BalanceMutation in com.adyen.model.transfers
Methods in com.adyen.model.transfers that return BalanceMutation Modifier and Type Method Description BalanceMutationBalanceMutation. balance(Long balance)The amount in the payment's currency that is debited or credited on the balance accounting register.BalanceMutationBalanceMutation. currency(String currency)The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes).static BalanceMutationBalanceMutation. fromJson(String jsonString)Create an instance of BalanceMutation given an JSON stringBalanceMutationBalanceMutation. received(Long received)The amount in the payment's currency that is debited or credited on the received accounting register.BalanceMutationBalanceMutation. reserved(Long reserved)The amount in the payment's currency that is debited or credited on the reserved accounting register.Methods in com.adyen.model.transfers that return types with arguments of type BalanceMutation Modifier and Type Method Description List<BalanceMutation>TransferData. getBalances()The list of the latest balance statuses in the transfer.List<BalanceMutation>TransferEvent. getMutations()The list of balance mutations per event.Methods in com.adyen.model.transfers with parameters of type BalanceMutation Modifier and Type Method Description TransferDataTransferData. addBalancesItem(BalanceMutation balancesItem)TransferEventTransferEvent. addMutationsItem(BalanceMutation mutationsItem)Method parameters in com.adyen.model.transfers with type arguments of type BalanceMutation Modifier and Type Method Description TransferDataTransferData. balances(List<BalanceMutation> balances)The list of the latest balance statuses in the transfer.TransferEventTransferEvent. mutations(List<BalanceMutation> mutations)The list of balance mutations per event.voidTransferData. setBalances(List<BalanceMutation> balances)The list of the latest balance statuses in the transfer.voidTransferEvent. setMutations(List<BalanceMutation> mutations)The list of balance mutations per event.
-