Package io.moov.sdk.models.components
Class CreateAuthorizedUserError
- java.lang.Object
-
- io.moov.sdk.models.components.CreateAuthorizedUserError
-
public class CreateAuthorizedUserError extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCreateAuthorizedUserError.Builder
-
Constructor Summary
Constructors Constructor Description CreateAuthorizedUserError()CreateAuthorizedUserError(java.util.Optional<java.lang.String> firstName, java.util.Optional<java.lang.String> lastName, java.util.Optional<? extends BirthDateError> birthDate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<BirthDateError>birthDate()static CreateAuthorizedUserError.Builderbuilder()booleanequals(java.lang.Object o)java.util.Optional<java.lang.String>firstName()inthashCode()java.util.Optional<java.lang.String>lastName()java.lang.StringtoString()CreateAuthorizedUserErrorwithBirthDate(BirthDateError birthDate)CreateAuthorizedUserErrorwithBirthDate(java.util.Optional<? extends BirthDateError> birthDate)CreateAuthorizedUserErrorwithFirstName(java.lang.String firstName)CreateAuthorizedUserErrorwithFirstName(java.util.Optional<java.lang.String> firstName)CreateAuthorizedUserErrorwithLastName(java.lang.String lastName)CreateAuthorizedUserErrorwithLastName(java.util.Optional<java.lang.String> lastName)
-
-
-
Constructor Detail
-
CreateAuthorizedUserError
public CreateAuthorizedUserError(java.util.Optional<java.lang.String> firstName, java.util.Optional<java.lang.String> lastName, java.util.Optional<? extends BirthDateError> birthDate)
-
CreateAuthorizedUserError
public CreateAuthorizedUserError()
-
-
Method Detail
-
firstName
public java.util.Optional<java.lang.String> firstName()
-
lastName
public java.util.Optional<java.lang.String> lastName()
-
birthDate
public java.util.Optional<BirthDateError> birthDate()
-
builder
public static CreateAuthorizedUserError.Builder builder()
-
withFirstName
public CreateAuthorizedUserError withFirstName(java.lang.String firstName)
-
withFirstName
public CreateAuthorizedUserError withFirstName(java.util.Optional<java.lang.String> firstName)
-
withLastName
public CreateAuthorizedUserError withLastName(java.lang.String lastName)
-
withLastName
public CreateAuthorizedUserError withLastName(java.util.Optional<java.lang.String> lastName)
-
withBirthDate
public CreateAuthorizedUserError withBirthDate(BirthDateError birthDate)
-
withBirthDate
public CreateAuthorizedUserError withBirthDate(java.util.Optional<? extends BirthDateError> birthDate)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-