Class ThirdPartyIdentifier
- java.lang.Object
-
- io.github.ma1uta.matrix.client.model.account.ThirdPartyIdentifier
-
public class ThirdPartyIdentifier extends Object
Request for gets a list of the third party identifiers that the homeserver has associated with the user's account.
-
-
Constructor Summary
Constructors Constructor Description ThirdPartyIdentifier()
-
Method Summary
Modifier and Type Method Description Long
getAddedAt()
String
getAddress()
String
getMedium()
Long
getValidatedAt()
void
setAddedAt(Long addedAt)
void
setAddress(String address)
void
setMedium(String medium)
void
setValidatedAt(Long validatedAt)
-
-
-
Field Detail
-
medium
private String medium
Required. The medium of the third party identifier. One of: ['email', 'msisdn'].
-
address
private String address
Required. The third party identifier address.
-
validatedAt
private Long validatedAt
Required. The timestamp, in milliseconds, when the identifier was validated by the identity server.
-
addedAt
private Long addedAt
Required. The timestamp, in milliseconds, when the homeserver associated the third party identifier with the user.
-
-
Method Detail
-
getMedium
public String getMedium()
-
setMedium
public void setMedium(String medium)
-
getAddress
public String getAddress()
-
setAddress
public void setAddress(String address)
-
getValidatedAt
public Long getValidatedAt()
-
setValidatedAt
public void setValidatedAt(Long validatedAt)
-
getAddedAt
public Long getAddedAt()
-
setAddedAt
public void setAddedAt(Long addedAt)
-
-