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

com.mangopay.core.RefundReason Maven / Gradle / Ivy

There is a newer version: 2.42.0
Show newest version
package com.mangopay.core;

import com.google.gson.annotations.SerializedName;
import com.mangopay.core.enumerations.RefundReasonType;

/**
 * Class represents refund's reason.
 */
public class RefundReason extends Dto {

    /**
     * Message.
     */
    @SerializedName("RefundReasonMessage")
    private String refundReasonMessage;

    /**
     * Type of refund reason.
     */
    @SerializedName("RefundReasonType")
    private RefundReasonType refundReasonType;

    public String getRefundReasonMessage() {
        return refundReasonMessage;
    }

    public void setRefundReasonMessage(String refundReasonMessage) {
        this.refundReasonMessage = refundReasonMessage;
    }

    public RefundReasonType getRefundReasonType() {
        return refundReasonType;
    }

    public void setRefundReasonType(RefundReasonType refundReasonType) {
        this.refundReasonType = refundReasonType;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy