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

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

/**
 *  The contact information for the user.
 */
@Value.Immutable
@Value.Style(typeImmutable = "*")
public abstract class AbstractUserContacts {
  /**
   * The email address of the user.
   */
  public abstract Optional email();

  /**
   * The mobile phone number of the user.
   */
  public abstract Optional mobilePhone();

  /**
   * The phone number of the user.
   */
  public abstract Optional phone();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy