com.bitpay.sdk.model.invoice.InvoiceRefundAddress 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.
The newest version!
/*
* Copyright (c) 2019 BitPay.
* All rights reserved.
*/
package com.bitpay.sdk.model.invoice;
import java.time.ZonedDateTime;
public class InvoiceRefundAddress {
protected String type;
protected ZonedDateTime date;
protected Integer tag;
protected String email;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public ZonedDateTime getDate() {
return this.date;
}
public void setDate(ZonedDateTime date) {
this.date = date;
}
public Integer getTag() {
return this.tag;
}
public void setTag(Integer tag) {
this.tag = tag;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
}