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

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

There is a newer version: 2.1.1
Show newest version
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 Timezone {
  private String zone;
  private int offset;

  public String getZone() {
    return this.zone;
  }

  public Timezone setZone(String zone) {
    this.zone = zone;
    return this;
  }

  public int getOffset() {
    return this.offset;
  }

  public Timezone setOffset(int offset) {
    this.offset = offset;
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy