Package org.drinkless.tdlib
Class TdApi.PushMessageContentMediaAlbum
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.PushMessageContent
-
- org.drinkless.tdlib.TdApi.PushMessageContentMediaAlbum
-
- Enclosing class:
- TdApi
public static class TdApi.PushMessageContentMediaAlbum extends TdApi.PushMessageContent
A media album.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.booleanhasAudiosTrue, if the album has at least one audio file.booleanhasDocumentsTrue, if the album has at least one document.booleanhasPhotosTrue, if the album has at least one photo.booleanhasVideosTrue, if the album has at least one video.inttotalCountNumber of messages in the album.
-
Constructor Summary
Constructors Constructor Description PushMessageContentMediaAlbum()A media album.PushMessageContentMediaAlbum(int totalCount, boolean hasPhotos, boolean hasVideos, boolean hasAudios, boolean hasDocuments)A media album.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConstructor()-
Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
-
-
-
Field Detail
-
totalCount
public int totalCount
Number of messages in the album.
-
hasPhotos
public boolean hasPhotos
True, if the album has at least one photo.
-
hasVideos
public boolean hasVideos
True, if the album has at least one video.
-
hasAudios
public boolean hasAudios
True, if the album has at least one audio file.
-
hasDocuments
public boolean hasDocuments
True, if the album has at least one document.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PushMessageContentMediaAlbum
public PushMessageContentMediaAlbum()
A media album.
-
PushMessageContentMediaAlbum
public PushMessageContentMediaAlbum(int totalCount, boolean hasPhotos, boolean hasVideos, boolean hasAudios, boolean hasDocuments)A media album.- Parameters:
totalCount- Number of messages in the album.hasPhotos- True, if the album has at least one photo.hasVideos- True, if the album has at least one video.hasAudios- True, if the album has at least one audio file.hasDocuments- True, if the album has at least one document.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-