All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.infinicast.client.api.paths.ReminderSchedulingOptions Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy