Class PublishResponse
- java.lang.Object
-
- io.github.ma1uta.matrix.identity.model.validation.PublishResponse
-
public class PublishResponse extends Object
Result of the publishing association.
-
-
Constructor Summary
Constructors Constructor Description PublishResponse()
-
Method Summary
Modifier and Type Method Description StringgetAddress()StringgetMedium()StringgetMxid()LonggetNotAfter()LonggetNotBefore()Map<String,Map<String,String>>getSignatures()LonggetTs()voidsetAddress(String address)voidsetMedium(String medium)voidsetMxid(String mxid)voidsetNotAfter(Long notAfter)voidsetNotBefore(Long notBefore)voidsetSignatures(Map<String,Map<String,String>> signatures)voidsetTs(Long ts)
-
-
-
Field Detail
-
address
private String address
Required. The 3pid address of the user being looked up.
-
medium
private String medium
Required. The medium type of the 3pid.
-
mxid
private String mxid
Required. The Matrix user ID associated with the 3pid.
-
notBefore
private Long notBefore
Required. A unix timestamp before which the association is not known to be valid.
-
notAfter
private Long notAfter
Required. A unix timestamp after which the association is not known to be valid.
-
ts
private Long ts
Required. The unix timestamp at which the association was verified.
-
-
Method Detail
-
getAddress
public String getAddress()
-
setAddress
public void setAddress(String address)
-
getMedium
public String getMedium()
-
setMedium
public void setMedium(String medium)
-
getMxid
public String getMxid()
-
setMxid
public void setMxid(String mxid)
-
getNotBefore
public Long getNotBefore()
-
setNotBefore
public void setNotBefore(Long notBefore)
-
getNotAfter
public Long getNotAfter()
-
setNotAfter
public void setNotAfter(Long notAfter)
-
getTs
public Long getTs()
-
setTs
public void setTs(Long ts)
-
-