Rename AccountCreationResult to AccountIdentityResponse (since it's not just for account creation any more)

This commit is contained in:
Jon Chambers
2022-01-26 13:54:15 -05:00
committed by Jon Chambers
parent b18117ef89
commit 1f1d618dea
3 changed files with 18 additions and 18 deletions

View File

@@ -11,7 +11,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.Nullable;
import java.util.UUID;
public class AccountCreationResult {
public class AccountIdentityResponse {
private final UUID uuid;
private final String number;
@@ -23,7 +23,7 @@ public class AccountCreationResult {
private final boolean storageCapable;
@JsonCreator
public AccountCreationResult(
public AccountIdentityResponse(
@JsonProperty("uuid") final UUID uuid,
@JsonProperty("number") final String number,
@JsonProperty("pni") final UUID pni,