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

com.falkonry.helper.models.Interval Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.falkonry.helper.models;

/*!
 * falkonry-java-client
 * Copyright(c) 2017 Falkonry Inc
 * MIT Licensed
 */


import org.codehaus.jackson.annotate.JsonIgnoreProperties;

/**
 *
 */
@JsonIgnoreProperties(ignoreUnknown=true)

public class Interval {
  private String field;
  private String duration;

    /**
     *
     * @return
     */
    public String getField() {
    return this.field;
  }

    /**
     *
     * @param field
     * @return
     */
    public Interval setField(String field) {
    this.field = field;
    return this;
  }

    /**
     *
     * @return
     */
    public String getDuration() {
    return this.duration;
  }

    /**
     *
     * @param duration
     * @return
     */
    public Interval setDuration(String duration) {
    this.duration = duration;
    return this;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy