br.com.moip.resource.Payment 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.resource;
import br.com.moip.resource.links.PaymentLinks;
import java.util.List;
public class Payment {
private String id;
private PaymentStatus status;
private Amount amount;
private int installmentCount;
private String statementDescriptor;
private final FundingInstrument fundingInstrument = new FundingInstrument();
private Geolocation geolocation;
private Boolean delayCapture;
private List escrows;
private PaymentLinks _links;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public PaymentStatus getStatus() {
return status;
}
public void setStatus(PaymentStatus status) {
this.status = status;
}
public Amount getAmount() {
return amount;
}
public void setAmount(Amount amount) {
this.amount = amount;
}
public int getInstallmentCount() {
return installmentCount;
}
public void setInstallmentCount(int installmentCount) {
this.installmentCount = installmentCount;
}
public String getStatementDescriptor() { return statementDescriptor; }
public void setStatementDescriptor(String statementDescriptor) { this.statementDescriptor = statementDescriptor; }
public FundingInstrument getFundingInstrument() {
return fundingInstrument;
}
public Geolocation getGeolocation() {
return geolocation;
}
public void setGeolocation(Geolocation geolocation) {
this.geolocation = geolocation;
}
public Boolean getDelayCapture() {
return delayCapture;
}
public void setDelayCapture(Boolean delayCapture) {
this.delayCapture = delayCapture;
}
public void setEscrows(List escrows) { this.escrows = escrows; }
public List getEscrows() {
return escrows;
}
private boolean hasEscrow() {
return (escrows != null && !escrows.isEmpty());
}
public Escrow getEscrow() {
if(!hasEscrow()) return null;
return escrows.get(0);
}
public String getEscrowId() {
if(!hasEscrow()) return null;
return getEscrow().getId();
}
public PaymentLinks getLinks() {
return _links;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("Payment{");
sb.append("id='").append(id).append('\'');
sb.append(", status=").append(status);
sb.append(", amount=").append(amount);
sb.append(", installmentCount=").append(installmentCount);
sb.append(", statementDescriptor=").append(statementDescriptor);
sb.append(", fundingInstrument=").append(fundingInstrument);
sb.append(", geolocation=").append(geolocation);
sb.append(", delayCapture=").append(delayCapture);
sb.append(", escrows=").append(escrows);
sb.append('}');
return sb.toString();
}
}