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

com.mercadopago.resources.datastructures.advancedpayment.Refund Maven / Gradle / Ivy

package com.mercadopago.resources.datastructures.advancedpayment;

import com.mercadopago.core.MPBase;
import java.util.Date;

public class Refund extends MPBase {

    private Integer id;
    private Integer paymentId;
    private Integer amount;
    private Source source;
    private Date dateCreated;
    private String status;

    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    public Integer getPaymentId() {
        return paymentId;
    }

    public void setPaymentId(Integer paymentId) {
        this.paymentId = paymentId;
    }

    public Integer getAmount() {
        return amount;
    }

    public void setAmount(Integer amount) {
        this.amount = amount;
    }

    public Source getSource() {
        return source;
    }

    public void setSource(Source source) {
        this.source = source;
    }

    public Date getDateCreated() {
        return dateCreated;
    }

    public void setDateCreated(Date dateCreated) {
        this.dateCreated = dateCreated;
    }

    public String getStatus() {
        return status;
    }

    public void setStatus(String status) {
        this.status = status;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy