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

it.contactlab.hub.sdk.java.models.AbstractLocalization Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package it.contactlab.hub.sdk.java.models;

import org.immutables.value.Value;

/**
 *  Localization.
 */
@Value.Immutable
@Value.Style(typeImmutable = "*")
public abstract class AbstractLocalization {

  /**
   * City.
   */
  public abstract String city();

  /**
   * Country.
   */
  public abstract String country();

  /**
   * Region.
   */
  public abstract String region();

  /**
   * Province.
   */
  public abstract String province();

  /**
   * Zip code.
   */
  public abstract String zip();

  /**
   * Geographical coordinates.
   */
  public abstract Geo geo();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy