Package com.confidentify.client.model
Class ConfidentifyUser
- java.lang.Object
-
- com.confidentify.client.model.ConfidentifyUser
-
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2020-04-14T23:27:48.571228600+02:00[Europe/Paris]") public class ConfidentifyUser extends Object
ConfidentifyUser
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERIALIZED_NAME_ACCOUNT_IDstatic StringSERIALIZED_NAME_LOGIN_ATstatic StringSERIALIZED_NAME_LOGIN_COUNTstatic StringSERIALIZED_NAME_USERNAME
-
Constructor Summary
Constructors Constructor Description ConfidentifyUser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfidentifyUseraccountId(String accountId)booleanequals(Object o)StringgetAccountId()Get accountIdOffsetDateTimegetLoginAt()The time of the user's last loginBigDecimalgetLoginCount()A running approximate count of how many times the user has logged in.StringgetUsername()Get usernameinthashCode()ConfidentifyUserloginAt(OffsetDateTime loginAt)ConfidentifyUserloginCount(BigDecimal loginCount)voidsetAccountId(String accountId)voidsetLoginAt(OffsetDateTime loginAt)voidsetLoginCount(BigDecimal loginCount)voidsetUsername(String username)StringtoString()ConfidentifyUserusername(String username)
-
-
-
Field Detail
-
SERIALIZED_NAME_USERNAME
public static final String SERIALIZED_NAME_USERNAME
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_ACCOUNT_ID
public static final String SERIALIZED_NAME_ACCOUNT_ID
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_LOGIN_COUNT
public static final String SERIALIZED_NAME_LOGIN_COUNT
- See Also:
- Constant Field Values
-
SERIALIZED_NAME_LOGIN_AT
public static final String SERIALIZED_NAME_LOGIN_AT
- See Also:
- Constant Field Values
-
-
Method Detail
-
username
public ConfidentifyUser username(String username)
-
setUsername
public void setUsername(String username)
-
accountId
public ConfidentifyUser accountId(String accountId)
-
setAccountId
public void setAccountId(String accountId)
-
loginCount
public ConfidentifyUser loginCount(BigDecimal loginCount)
-
getLoginCount
@Nullable public BigDecimal getLoginCount()
A running approximate count of how many times the user has logged in.- Returns:
- loginCount
-
setLoginCount
public void setLoginCount(BigDecimal loginCount)
-
loginAt
public ConfidentifyUser loginAt(OffsetDateTime loginAt)
-
getLoginAt
@Nullable public OffsetDateTime getLoginAt()
The time of the user's last login- Returns:
- loginAt
-
setLoginAt
public void setLoginAt(OffsetDateTime loginAt)
-
-