br.com.moip.request.ApiDateRequest 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;
import java.util.Date;
public class ApiDateRequest {
private Date date;
public Date getDate() {
return date;
}
public ApiDateRequest date(Date date) {
this.date = date;
return this;
}
}