io.infinicast.client.api.paths.ReminderSchedulingOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinicast-client-jdk8 Show documentation
Show all versions of infinicast-client-jdk8 Show documentation
Infinicast SDK to communicate with the cloud.
package io.infinicast.client.api.paths;
import io.infinicast.JObject;
import org.joda.time.DateTime;
public class ReminderSchedulingOptions {
DateTime dateTime;
public ReminderSchedulingOptions withFixedDate(DateTime dateTime_) {
this.dateTime = dateTime_;
return this;
}
public JObject toJson() {
JObject json = new JObject();
json.set("fixed", this.dateTime);
return json;
}
}