Package org.drinkless.tdlib
Class TdApi.ProfilePhoto
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.ProfilePhoto
-
- Enclosing class:
- TdApi
public static class TdApi.ProfilePhoto extends TdApi.Object
Describes a user profile photo.
-
-
Field Summary
Fields Modifier and Type Field Description TdApi.FilebigA big (640x640) user profile photo.static intCONSTRUCTORIdentifier uniquely determining type of the object.booleanhasAnimationTrue, if the photo has animated variant.longidPhoto identifier; 0 for an empty photo.TdApi.MinithumbnailminithumbnailUser profile photo minithumbnail; may be null.TdApi.FilesmallA small (160x160) user profile photo.
-
Constructor Summary
Constructors Constructor Description ProfilePhoto()Describes a user profile photo.ProfilePhoto(long id, TdApi.File small, TdApi.File big, TdApi.Minithumbnail minithumbnail, boolean hasAnimation)Describes a user profile photo.
-
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
-
id
public long id
Photo identifier; 0 for an empty photo. Can be used to find a photo in a list of user profile photos.
-
small
public TdApi.File small
A small (160x160) user profile photo. The file can be downloaded only before the photo is changed.
-
big
public TdApi.File big
A big (640x640) user profile photo. The file can be downloaded only before the photo is changed.
-
minithumbnail
public TdApi.Minithumbnail minithumbnail
User profile photo minithumbnail; may be null.
-
hasAnimation
public boolean hasAnimation
True, if the photo has animated variant.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ProfilePhoto
public ProfilePhoto()
Describes a user profile photo.
-
ProfilePhoto
public ProfilePhoto(long id, TdApi.File small, TdApi.File big, TdApi.Minithumbnail minithumbnail, boolean hasAnimation)Describes a user profile photo.- Parameters:
id- Photo identifier; 0 for an empty photo. Can be used to find a photo in a list of user profile photos.small- A small (160x160) user profile photo. The file can be downloaded only before the photo is changed.big- A big (640x640) user profile photo. The file can be downloaded only before the photo is changed.minithumbnail- User profile photo minithumbnail; may be null.hasAnimation- True, if the photo has animated variant.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-