com.sinch.sdk.domains.verification.models.v1.Identity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sinch-sdk-java Show documentation
Show all versions of sinch-sdk-java Show documentation
SDK providing a Java API for the Sinch REST APIs.
package com.sinch.sdk.domains.verification.models.v1;
/** 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