All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adyen.model.additionalData.SplitPayment Maven / Gradle / Ivy

There is a newer version: 28.4.0
Show newest version
/*
 *                       ######
 *                       ######
 * ############    ####( ######  #####. ######  ############   ############
 * #############  #####( ######  #####. ######  #############  #############
 *        ######  #####( ######  #####. ######  #####  ######  #####  ######
 * ###### ######  #####( ######  #####. ######  #####  #####   #####  ######
 * ###### ######  #####( ######  #####. ######  #####          #####  ######
 * #############  #############  #############  #############  #####  ######
 *  ############   ############  #############   ############  #####  ######
 *                                      ######
 *                               #############
 *                               ############
 *
 * Adyen Java API Library
 *
 * Copyright (c) 2017 Adyen B.V.
 * This file is open source and available under the MIT license.
 * See the LICENSE file for more info.
 */
package com.adyen.model.additionalData;

import java.util.List;

public class SplitPayment {

    private Integer api;
    private Long totalAmount;
    private String currencyCode;
    private List splitPaymentItems;

    public Integer getApi() {
        return api;
    }

    public void setApi(Integer api) {
        this.api = api;
    }

    public Long getTotalAmount() {
        return totalAmount;
    }

    public void setTotalAmount(Long totalAmount) {
        this.totalAmount = totalAmount;
    }

    public String getCurrencyCode() {
        return currencyCode;
    }

    public void setCurrencyCode(String currencyCode) {
        this.currencyCode = currencyCode;
    }

    public List getSplitPaymentItems() {
        return splitPaymentItems;
    }

    public void setSplitPaymentItems(List splitPaymentItems) {
        this.splitPaymentItems = splitPaymentItems;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy