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

com.adobe.target.delivery.v1.model.Geo Maven / Gradle / Ivy

There is a newer version: 2.6.1
Show newest version
/*
 * Copyright 2021 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * NOTE: This is an auto generated file. Do not edit directly.
 */
package com.adobe.target.delivery.v1.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;

/**
 * Geo data. If not specified, and Geo is enabled for the client, it will be resolved via user's
 * IP.
 */
public class Geo {
  @JsonProperty("ipAddress")
  private String ipAddress;

  @JsonProperty("latitude")
  private Float latitude;

  @JsonProperty("longitude")
  private Float longitude;

  @JsonProperty("countryCode")
  private String countryCode;

  @JsonProperty("stateCode")
  private String stateCode;

  @JsonProperty("city")
  private String city;

  @JsonProperty("zip")
  private String zip;

  public Geo ipAddress(String ipAddress) {
    this.ipAddress = ipAddress;
    return this;
  }

  /**
   * IPv4 or IPv6 address for Geo resolution
   *
   * @return ipAddress
   */
  public String getIpAddress() {
    return ipAddress;
  }

  public void setIpAddress(String ipAddress) {
    this.ipAddress = ipAddress;
  }

  public Geo latitude(Float latitude) {
    this.latitude = latitude;
    return this;
  }

  /**
   * Latitude
   *
   * @return latitude
   */
  public Float getLatitude() {
    return latitude;
  }

  public void setLatitude(Float latitude) {
    this.latitude = latitude;
  }

  public Geo longitude(Float longitude) {
    this.longitude = longitude;
    return this;
  }

  /**
   * Longitude
   *
   * @return longitude
   */
  public Float getLongitude() {
    return longitude;
  }

  public void setLongitude(Float longitude) {
    this.longitude = longitude;
  }

  public Geo countryCode(String countryCode) {
    this.countryCode = countryCode;
    return this;
  }

  /**
   * Country code in ISO 3166-1 alpha-2 format
   *
   * @return countryCode
   */
  public String getCountryCode() {
    return countryCode;
  }

  public void setCountryCode(String countryCode) {
    this.countryCode = countryCode;
  }

  public Geo stateCode(String stateCode) {
    this.stateCode = stateCode;
    return this;
  }

  /**
   * Alphanumeric characters representing the subdivision part from ISO 3166-2
   *
   * @return stateCode
   */
  public String getStateCode() {
    return stateCode;
  }

  public void setStateCode(String stateCode) {
    this.stateCode = stateCode;
  }

  public Geo city(String city) {
    this.city = city;
    return this;
  }

  /**
   * City
   *
   * @return city
   */
  public String getCity() {
    return city;
  }

  public void setCity(String city) {
    this.city = city;
  }

  public Geo zip(String zip) {
    this.zip = zip;
    return this;
  }

  /**
   * Zip/Postal Code
   *
   * @return zip
   */
  public String getZip() {
    return zip;
  }

  public void setZip(String zip) {
    this.zip = zip;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    Geo geo = (Geo) o;
    return Objects.equals(this.ipAddress, geo.ipAddress)
        && Objects.equals(this.latitude, geo.latitude)
        && Objects.equals(this.longitude, geo.longitude)
        && Objects.equals(this.countryCode, geo.countryCode)
        && Objects.equals(this.stateCode, geo.stateCode)
        && Objects.equals(this.city, geo.city)
        && Objects.equals(this.zip, geo.zip);
  }

  @Override
  public int hashCode() {
    return Objects.hash(ipAddress, latitude, longitude, countryCode, stateCode, city, zip);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class Geo {\n");
    sb.append("    ipAddress: ").append(toIndentedString(ipAddress)).append("\n");
    sb.append("    latitude: ").append(toIndentedString(latitude)).append("\n");
    sb.append("    longitude: ").append(toIndentedString(longitude)).append("\n");
    sb.append("    countryCode: ").append(toIndentedString(countryCode)).append("\n");
    sb.append("    stateCode: ").append(toIndentedString(stateCode)).append("\n");
    sb.append("    city: ").append(toIndentedString(city)).append("\n");
    sb.append("    zip: ").append(toIndentedString(zip)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces (except the first line).
   */
  private String toIndentedString(Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy