![JAR search and dependency download from the Maven repository](/logo.png)
com.falkonry.helper.models.Timezone 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) 2017 Falkonry Inc
* MIT Licensed
*/
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
/**
*
*/
@JsonIgnoreProperties(ignoreUnknown=true)
public class Timezone {
private String zone;
private int offset;
/**
*
* @return
*/
public String getZone() {
return this.zone;
}
/**
*
* @param zone
* @return
*/
public Timezone setZone(String zone) {
this.zone = zone;
return this;
}
/**
*
* @return
*/
public int getOffset() {
return this.offset;
}
/**
*
* @param offset
* @return
*/
public Timezone setOffset(int offset) {
this.offset = offset;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy