Class OTPDetails
- java.lang.Object
-
- in.dragonbra.javasteam.steam.handlers.steamuser.OTPDetails
-
public class OTPDetails extends java.lang.ObjectThe One-Time-Password details for this response.
-
-
Constructor Summary
Constructors Constructor Description OTPDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetIdentifier()intgetType()intgetValue()voidsetIdentifier(java.lang.String identifier)voidsetType(int type)voidsetValue(int value)
-
-
-
Method Detail
-
getType
public int getType()
- Returns:
- the one-time-password type.
-
setType
public void setType(int type)
- Parameters:
type- the one-time-password type.
-
getIdentifier
public java.lang.String getIdentifier()
- Returns:
- the one-time-password identifier.
-
setIdentifier
public void setIdentifier(java.lang.String identifier)
- Parameters:
identifier- the one-time-password identifier.
-
getValue
public int getValue()
- Returns:
- the one-time-password value.
-
setValue
public void setValue(int value)
- Parameters:
value- the one-time-password value.
-
-