
net.accelbyte.sdk.api.iam.models.AccountCreateUserRequestV4 Maven / Gradle / Ivy
/*
* Copyright (c) 2022 AccelByte Inc. All Rights Reserved
* This is licensed software from AccelByte Inc, for limitations
* and restrictions contact your company contract manager.
*
* Code generated. DO NOT EDIT.
*/
package net.accelbyte.sdk.api.iam.models;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.util.*;
import lombok.*;
import net.accelbyte.sdk.core.Model;
@JsonIgnoreProperties(ignoreUnknown = true)
@Builder
@Getter
@Setter
// @deprecated 2022-08-29 - All args constructor may cause problems. Use builder instead.
@AllArgsConstructor(onConstructor = @__(@Deprecated))
@NoArgsConstructor
public class AccountCreateUserRequestV4 extends Model {
@JsonProperty("acceptedPolicies")
@JsonInclude(JsonInclude.Include.NON_NULL)
private List acceptedPolicies;
@JsonProperty("authType")
private String authType;
@JsonProperty("code")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String code;
@JsonProperty("country")
private String country;
@JsonProperty("dateOfBirth")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String dateOfBirth;
@JsonProperty("displayName")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String displayName;
@JsonProperty("emailAddress")
private String emailAddress;
@JsonProperty("password")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String password;
@JsonProperty("passwordMD5Sum")
@JsonInclude(JsonInclude.Include.NON_NULL)
private String passwordMD5Sum;
@JsonProperty("reachMinimumAge")
@JsonInclude(JsonInclude.Include.NON_NULL)
private Boolean reachMinimumAge;
@JsonProperty("username")
private String username;
@JsonIgnore
public String getAuthType() {
return this.authType;
}
@JsonIgnore
public AuthType getAuthTypeAsEnum() {
return AuthType.valueOf(this.authType);
}
@JsonIgnore
public void setAuthType(final String authType) {
this.authType = authType;
}
@JsonIgnore
public void setAuthTypeFromEnum(final AuthType authType) {
this.authType = authType.toString();
}
@JsonIgnore
public AccountCreateUserRequestV4 createFromJson(String json) throws JsonProcessingException {
return new ObjectMapper().readValue(json, this.getClass());
}
@JsonIgnore
public List createFromJsonList(String json)
throws JsonProcessingException {
return new ObjectMapper()
.readValue(json, new TypeReference>() {});
}
public enum AuthType {
EMAILPASSWD("EMAILPASSWD");
private String value;
AuthType(String value) {
this.value = value;
}
@Override
public String toString() {
return this.value;
}
}
public static class AccountCreateUserRequestV4Builder {
private String authType;
public AccountCreateUserRequestV4Builder authType(final String authType) {
this.authType = authType;
return this;
}
public AccountCreateUserRequestV4Builder authTypeFromEnum(final AuthType authType) {
this.authType = authType.toString();
return this;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy