com.tinypass.client.publisher.model.EraseUserPayment Maven / Gradle / Ivy
package com.tinypass.client.publisher.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
public class EraseUserPayment {
/* The user payment ID */
private String userPaymentId = null;
/* The user payment tax */
private String tax = null;
/* The billing region */
private String billingRegion = null;
/* The residence region */
private String residenceRegion = null;
/* The ui caption */
private String uiCaption = null;
/* The user payment name */
private String name = null;
/* address */
private String address = null;
/* The geo location country of the user who made the payment */
private String geoLocationCountry = null;
/* The geo location of the user who effected the payment */
private String geoLocation = null;
public String getUserPaymentId() {
return userPaymentId;
}
public void setUserPaymentId(String userPaymentId) {
this.userPaymentId = userPaymentId;
}
public String getTax() {
return tax;
}
public void setTax(String tax) {
this.tax = tax;
}
public String getBillingRegion() {
return billingRegion;
}
public void setBillingRegion(String billingRegion) {
this.billingRegion = billingRegion;
}
public String getResidenceRegion() {
return residenceRegion;
}
public void setResidenceRegion(String residenceRegion) {
this.residenceRegion = residenceRegion;
}
public String getUiCaption() {
return uiCaption;
}
public void setUiCaption(String uiCaption) {
this.uiCaption = uiCaption;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getGeoLocationCountry() {
return geoLocationCountry;
}
public void setGeoLocationCountry(String geoLocationCountry) {
this.geoLocationCountry = geoLocationCountry;
}
public String getGeoLocation() {
return geoLocation;
}
public void setGeoLocation(String geoLocation) {
this.geoLocation = geoLocation;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class EraseUserPayment {\n");
sb.append(" userPaymentId: ").append(userPaymentId).append("\n");
sb.append(" tax: ").append(tax).append("\n");
sb.append(" billingRegion: ").append(billingRegion).append("\n");
sb.append(" residenceRegion: ").append(residenceRegion).append("\n");
sb.append(" uiCaption: ").append(uiCaption).append("\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" address: ").append(address).append("\n");
sb.append(" geoLocationCountry: ").append(geoLocationCountry).append("\n");
sb.append(" geoLocation: ").append(geoLocation).append("\n");
sb.append("}\n");
return sb.toString();
}
}