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

com.mercadopago.resources.datastructures.payment.FeeDetail Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.mercadopago.resources.datastructures.payment;

/**
 * Mercado Pago SDK
 * Fee Detail class
 *
 * Created by Eduardo Paoletta on 12/2/16.
 */
public class FeeDetail {

    private Type type = null;
    public enum Type {
        mercadopago_fee,
        coupon_fee,
        financing_fee,
        shipping_fee,
        application_fee,
        discount_fee
    }
    private FeePayer feePayer = null;
    public enum FeePayer {
        collector,
        payer
    }
    private Float amount = null;


    public Type getType() {
        return type;
    }

    public FeePayer getFeePayer() {
        return feePayer;
    }

    public Float getAmount() {
        return amount;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy