com.bitpay.sdk.model.invoice.RefundInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitpay_sdk Show documentation
Show all versions of bitpay_sdk Show documentation
Full implementation of the BitPay Payment Gateway. This library implements BitPay's Cryptographically
Secure RESTful API.
/*
* Copyright (c) 2019 BitPay.
* All rights reserved.
*/
package com.bitpay.sdk.model.invoice;
import com.bitpay.sdk.exceptions.BitPayExceptionProvider;
import com.bitpay.sdk.exceptions.BitPayGenericException;
import com.bitpay.sdk.model.Currency;
import com.bitpay.sdk.model.ModelConfiguration;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Hashtable;
/**
* The type Refund info.
*
* @see REST API Refunds
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class RefundInfo {
protected String supportRequest = ModelConfiguration.DEFAULT_NON_SENT_VALUE;
protected String currency = ModelConfiguration.DEFAULT_NON_SENT_VALUE;
protected Hashtable amounts;
/**
* Instantiates a new Refund info.
*/
public RefundInfo() {
}
/**
* Gets the refund requestId.
*
* @return the support request
*/
@JsonIgnore
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
public String getSupportRequest() {
return this.supportRequest;
}
/**
* Sets the refund requestId.
*
* @param supportRequest the support request
*/
@JsonProperty("supportRequest")
public void setSupportRequest(String supportRequest) {
this.supportRequest = supportRequest;
}
/**
* Gets reference currency used for the refund, usually the same as the currency used to create the invoice.
*
* @return the currency
*/
@JsonIgnore
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
public String getCurrency() {
return this.currency;
}
/**
* Sets reference currency used for the refund, usually the same as the currency used to create the invoice.
*
* @param currency the currency
* @throws BitPayGenericException BitPayGenericException class
*/
@JsonProperty("currency")
public void setCurrency(String currency) throws BitPayGenericException {
if (!Currency.isValid(currency)) {
BitPayExceptionProvider.throwInvalidCurrencyException(currency);
}
this.currency = currency;
}
/**
* Gets amounts. For a refunded invoice, this object will contain the crypto currency amount refunded by BitPay
* to the consumer (in the selected transactionCurrency) and the equivalent refunded amount from the invoice
* in the given currency (thus linked to the amount debited from the merchant account to cover the refund).
*
* @return the amounts
*/
@JsonIgnore
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
public Hashtable getAmounts() {
return this.amounts;
}
/**
* Sets amounts. For a refunded invoice, this object will contain the crypto currency amount refunded by BitPay
* to the consumer (in the selected transactionCurrency) and the equivalent refunded amount from the invoice
* in the given currency (thus linked to the amount debited from the merchant account to cover the refund).
*
* @param amounts the amounts
*/
@JsonProperty("amounts")
public void setAmounts(Hashtable amounts) {
this.amounts = amounts;
}
}