com.stripe.model.FeeRefund Maven / Gradle / Ivy
package com.stripe.model;
import com.stripe.exception.APIConnectionException;
import com.stripe.exception.APIException;
import com.stripe.exception.AuthenticationException;
import com.stripe.exception.CardException;
import com.stripe.exception.InvalidRequestException;
import com.stripe.net.APIResource;
import com.stripe.net.RequestOptions;
import java.util.Map;
public class FeeRefund extends APIResource implements MetadataStore, HasId {
String id;
String object;
Long amount;
ExpandableField balanceTransaction;
String currency;
Long created;
ExpandableField fee;
Map metadata;
public String getId() {
return id;
}
public String getObject() {
return object;
}
public void setObject(String object) {
this.object = object;
}
public Long getAmount() {
return amount;
}
public void setAmount(Long amount) {
this.amount = amount;
}
public String getBalanceTransaction() {
if (this.balanceTransaction == null) {
return null;
}
return this.balanceTransaction.getId();
}
public void setBalanceTransaction(String balanceTransactionID) {
this.balanceTransaction = setExpandableFieldID(balanceTransactionID, this.balanceTransaction);
}
public BalanceTransaction getBalanceTransactionObject() {
if (this.balanceTransaction == null) {
return null;
}
return this.balanceTransaction.getExpanded();
}
public void setBalanceTransactionObject(BalanceTransaction c) {
this.balanceTransaction = new ExpandableField(c.getId(), c);
}
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public Long getCreated() {
return created;
}
public void setCreated(Long created) {
this.created = created;
}
public String getFee() {
if (this.fee == null) {
return null;
}
return this.fee.getId();
}
public void setFee(String feeID) {
this.fee = setExpandableFieldID(feeID, this.fee);
}
public ApplicationFee getFeeObject() {
if (this.fee == null) {
return null;
}
return this.fee.getExpanded();
}
public void setFeeObject(ApplicationFee c) {
this.fee = new ExpandableField(c.getId(), c);
}
public Map getMetadata() {
return metadata;
}
public void setMetadata(Map metadata) {
this.metadata = metadata;
}
public FeeRefund update(Map params)
throws AuthenticationException, InvalidRequestException,
APIConnectionException, CardException, APIException {
return update(params, (RequestOptions) null);
}
@Deprecated
public FeeRefund update(Map params, String apiKey)
throws AuthenticationException, InvalidRequestException,
APIConnectionException, CardException, APIException {
return update(params, RequestOptions.builder().setApiKey(apiKey).build());
}
public FeeRefund update(Map params, RequestOptions options)
throws AuthenticationException, InvalidRequestException,
APIConnectionException, CardException, APIException {
return request(RequestMethod.POST, this.getInstanceURL(), params, FeeRefund.class, options);
}
public String getInstanceURL() {
if (this.fee != null) {
return String.format("%s/%s/refunds/%s", classURL(ApplicationFee.class), this.fee, this.getId());
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy