Package org.drinkless.tdlib
Class TdApi.Background
- java.lang.Object
-
- org.drinkless.tdlib.TdApi.Object
-
- org.drinkless.tdlib.TdApi.Background
-
- Enclosing class:
- TdApi
public static class TdApi.Background extends TdApi.Object
Describes a chat background.
-
-
Field Summary
Fields Modifier and Type Field Description static intCONSTRUCTORIdentifier uniquely determining type of the object.TdApi.DocumentdocumentDocument with the background; may be null.longidUnique background identifier.booleanisDarkTrue, if the background is dark and is recommended to be used with dark theme.booleanisDefaultTrue, if this is one of default backgrounds.StringnameUnique background name.TdApi.BackgroundTypetypeType of the background.
-
Constructor Summary
Constructors Constructor Description Background()Describes a chat background.Background(long id, boolean isDefault, boolean isDark, String name, TdApi.Document document, TdApi.BackgroundType type)Describes a chat background.
-
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
Unique background identifier.
-
isDefault
public boolean isDefault
True, if this is one of default backgrounds.
-
isDark
public boolean isDark
True, if the background is dark and is recommended to be used with dark theme.
-
name
public String name
Unique background name.
-
document
public TdApi.Document document
Document with the background; may be null. Null only for filled backgrounds.
-
type
public TdApi.BackgroundType type
Type of the background.
-
CONSTRUCTOR
public static final int CONSTRUCTOR
Identifier uniquely determining type of the object.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Background
public Background()
Describes a chat background.
-
Background
public Background(long id, boolean isDefault, boolean isDark, String name, TdApi.Document document, TdApi.BackgroundType type)Describes a chat background.- Parameters:
id- Unique background identifier.isDefault- True, if this is one of default backgrounds.isDark- True, if the background is dark and is recommended to be used with dark theme.name- Unique background name.document- Document with the background; may be null. Null only for filled backgrounds.type- Type of the background.
-
-
Method Detail
-
getConstructor
public int getConstructor()
- Specified by:
getConstructorin classTdApi.Object- Returns:
- this.CONSTRUCTOR
-
-