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

it.contactlab.hub.sdk.java.models.AbstractClient 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;

import java.util.Optional;

/**
 * Details about the client in an event context info.
 */
@Value.Immutable
@Value.Style(typeImmutable = "*")
public abstract class AbstractClient {

  /**
   * The user agent of the client.
   */
  public abstract Optional userAgent();

  /**
   * The ipv4 of the client.
   */
  public abstract String ip();

  /**
   * The localization of the client.
   */
  public abstract Optional localization();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy