BackgroundFill

Added in version 21.2.

class telegram.BackgroundFill(type, *, api_kwargs=None)[source]

Bases: telegram.TelegramObject

Base class for Telegram BackgroundFill Objects. It can be one of:

Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their type is equal.

Added in version 21.2.

Parameters:

type (str) – Type of the background fill. Can be one of: SOLID, GRADIENT or FREEFORM_GRADIENT.

type[source]

Type of the background fill. Can be one of: SOLID, GRADIENT or FREEFORM_GRADIENT.

Type:

str

FREEFORM_GRADIENT = 'freeform_gradient'[source]

telegram.constants.BackgroundFillType.FREEFORM_GRADIENT

GRADIENT = 'gradient'[source]

telegram.constants.BackgroundFillType.GRADIENT

SOLID = 'solid'[source]

telegram.constants.BackgroundFillType.SOLID

classmethod de_json(data, bot=None)[source]

See telegram.TelegramObject.de_json().