Class LocationInfo
- java.lang.Object
-
- io.github.ma1uta.matrix.event.nested.LocationInfo
-
public class LocationInfo extends Object
Location info.
-
-
Field Summary
Fields Modifier and Type Field Description private EncryptedFile
thumbnailFile
Information on the encrypted thumbnail file, as specified in End-to-end encryption.private ThumbnailInfo
thumbnailInfo
Metadata about the image referred to in thumbnail_url.private String
thumbnailUrl
The URL to a thumbnail of the location being represented.
-
Constructor Summary
Constructors Constructor Description LocationInfo()
-
Method Summary
Modifier and Type Method Description EncryptedFile
getThumbnailFile()
ThumbnailInfo
getThumbnailInfo()
String
getThumbnailUrl()
void
setThumbnailFile(EncryptedFile thumbnailFile)
void
setThumbnailInfo(ThumbnailInfo thumbnailInfo)
void
setThumbnailUrl(String thumbnailUrl)
-
-
-
Field Detail
-
thumbnailUrl
private String thumbnailUrl
The URL to a thumbnail of the location being represented.
-
thumbnailFile
private EncryptedFile thumbnailFile
Information on the encrypted thumbnail file, as specified in End-to-end encryption. Only present if the thumbnail is encrypted.
-
thumbnailInfo
private ThumbnailInfo thumbnailInfo
Metadata about the image referred to in thumbnail_url.
-
-
Method Detail
-
getThumbnailUrl
public String getThumbnailUrl()
-
setThumbnailUrl
public void setThumbnailUrl(String thumbnailUrl)
-
getThumbnailFile
public EncryptedFile getThumbnailFile()
-
setThumbnailFile
public void setThumbnailFile(EncryptedFile thumbnailFile)
-
getThumbnailInfo
public ThumbnailInfo getThumbnailInfo()
-
setThumbnailInfo
public void setThumbnailInfo(ThumbnailInfo thumbnailInfo)
-
-