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

com.sinch.sdk.domains.verification.models.Identity Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.sinch.sdk.domains.verification.models;

/** Base class for Identity objects */
public abstract class Identity {

  private final String type;

  /**
   * Create an instance of identity with type
   *
   * @param type Identity type
   */
  protected Identity(String type) {
    this.type = type;
  }

  @Override
  public String toString() {
    return "Identity{" + "type='" + type + '\'' + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy