br.com.moip.request.Recurring 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 Recurring {
private boolean recurring;
private int occurrence;
public Recurring() {
}
public boolean isRecurring() {
return this.recurring;
}
public void setRecurring(boolean recurring) {
this.recurring = recurring;
}
public int getOccurrence() {
return this.occurrence;
}
public void setOccurrence(int occurrence) {
this.occurrence = occurrence;
}
}