Package org.drinkless.tdlib
Class TdApi.Minithumbnail
java.lang.Object
org.drinkless.tdlib.TdApi.Object
org.drinkless.tdlib.TdApi.Minithumbnail
- Enclosing class:
- TdApi
Thumbnail image of a very poor quality and low resolution.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intIdentifier uniquely determining type of the object.byte[]The thumbnail in JPEG format.intThumbnail height, usually doesn't exceed 40.intThumbnail width, usually doesn't exceed 40. -
Constructor Summary
ConstructorsConstructorDescriptionThumbnail image of a very poor quality and low resolution.Minithumbnail(int width, int height, byte[] data) Thumbnail image of a very poor quality and low resolution. -
Method Summary
Modifier and TypeMethodDescriptionintReturns an identifier uniquely determining type of the object.Methods inherited from class org.drinkless.tdlib.TdApi.Object
toString
-
Field Details
-
width
public int widthThumbnail width, usually doesn't exceed 40. -
height
public int heightThumbnail height, usually doesn't exceed 40. -
data
public byte[] dataThe thumbnail in JPEG format. -
CONSTRUCTOR
public static final int CONSTRUCTORIdentifier uniquely determining type of the object.- See Also:
-
-
Constructor Details
-
Minithumbnail
public Minithumbnail()Thumbnail image of a very poor quality and low resolution. -
Minithumbnail
public Minithumbnail(int width, int height, byte[] data) Thumbnail image of a very poor quality and low resolution.- Parameters:
width- Thumbnail width, usually doesn't exceed 40.height- Thumbnail height, usually doesn't exceed 40.data- The thumbnail in JPEG format.
-
-
Method Details
-
getConstructor
public int getConstructor()Description copied from class:TdApi.ObjectReturns an identifier uniquely determining type of the object.- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-