com.tinypass.client.publisher.model.PayeeSettingsEntry 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 PayeeSettingsEntry {
/* The merchant account name configured for that currency in Braintree */
private String merchantAccountId = null;
/* The payee email */
private String payeeEmail = null;
public String getMerchantAccountId() {
return merchantAccountId;
}
public void setMerchantAccountId(String merchantAccountId) {
this.merchantAccountId = merchantAccountId;
}
public String getPayeeEmail() {
return payeeEmail;
}
public void setPayeeEmail(String payeeEmail) {
this.payeeEmail = payeeEmail;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PayeeSettingsEntry {\n");
sb.append(" merchantAccountId: ").append(merchantAccountId).append("\n");
sb.append(" payeeEmail: ").append(payeeEmail).append("\n");
sb.append("}\n");
return sb.toString();
}
}