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;
public class Payment {
private String id;
private int installmentCount;
private FundingInstrument fundingInstrument = new FundingInstrument();
public String getId() {
return id;
}
public FundingInstrument getFundingInstrument() {
return fundingInstrument;
}
public int getInstallmentCount() {
return installmentCount;
}
}