br.com.moip.request.FundingInstrumentRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for Moip v2 APIs
package br.com.moip.request;
public class FundingInstrumentRequest {
private Method method;
private CreditCardRequest creditCard;
private boolean supressBoleto;
private boolean supressCreditCard;
public Method getMethod() {
return method;
}
public FundingInstrumentRequest creditCard(final CreditCardRequest creditCard) {
this.creditCard = creditCard;
this.method = Method.CREDIT_CARD;
return this;
}
public boolean isSupressBoleto() {
return supressBoleto;
}
public FundingInstrumentRequest supressBoleto(final boolean supressBoleto) {
this.supressBoleto = supressBoleto;
return this;
}
public boolean isSupressCreditCard() {
return supressCreditCard;
}
public FundingInstrumentRequest supressCreditCard(final boolean supressCreditCard) {
this.supressCreditCard = supressCreditCard;
return this;
}
private enum Method {
CREDIT_CARD;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("FundingInstrumentRequest{");
sb.append("method=").append(method);
sb.append(", creditCard=").append(creditCard);
sb.append('}');
return sb.toString();
}
}