com.falkonry.helper.models.Interval Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
Falkonry Java Client to access Condition Prediction APIs.
package com.falkonry.helper.models;
/*!
* falkonry-java-client
* Copyright(c) 2016 Falkonry Inc
* MIT Licensed
*/
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown=true)
public class Interval {
private String field;
private String duration;
public String getField() {
return this.field;
}
public Interval setField(String field) {
this.field = field;
return this;
}
public String getDuration() {
return this.duration;
}
public Interval setDuration(String duration) {
this.duration = duration;
return this;
}
}