Inherits InputMessageContent.
A message with paid media; can be used only in channel chats with supergroupFullInfo.has_paid_media_allowed.
Public Fields | |
int53 | star_count_ |
The number of Telegram Stars that must be paid to see the media; 1-getOption("paid_media_message_star_count_max"). | |
array< object_ptr< inputPaidMedia > > | paid_media_ |
The content of the paid media. | |
object_ptr< formattedText > | caption_ |
Message caption; pass null to use an empty caption; 0-getOption("message_caption_length_max") characters. | |
bool | show_caption_above_media_ |
True, if the caption must be shown above the media; otherwise, the caption must be shown below the media; not supported in secret chats. | |
string | payload_ |
Bot-provided data for the paid media; bots only. | |
Public Instance Methods | |
inputMessagePaidMedia () | |
inputMessagePaidMedia (int53 star_count_, array< object_ptr< inputPaidMedia >> &&paid_media_, object_ptr< formattedText > &&caption_, bool show_caption_above_media_, string const &payload_) | |
void | store (TlStorerToString &s, const char *field_name) const final |
Public Instance Methods inherited from TlObject | |
virtual void | store (TlStorerUnsafe &s) const |
virtual void | store (TlStorerCalcLength &s) const |
TlObject ()=default | |
TlObject (const TlObject &)=delete | |
TlObject & | operator= (const TlObject &)=delete |
TlObject (TlObject &&)=default | |
TlObject & | operator= (TlObject &&)=default |
virtual | ~TlObject ()=default |
Static Public Attributes | |
static const std::int32_t | ID = -1274819374 |
Identifier uniquely determining a type of the object. | |
A message with paid media; can be used only in channel chats with supergroupFullInfo.has_paid_media_allowed.
inputMessagePaidMedia | ( | int53 | star_count_, |
array< object_ptr< inputPaidMedia >> && | paid_media_, | ||
object_ptr< formattedText > && | caption_, | ||
bool | show_caption_above_media_, | ||
string const & | payload_ | ||
) |
A message with paid media; can be used only in channel chats with supergroupFullInfo.has_paid_media_allowed.
[in] | star_count_ | The number of Telegram Stars that must be paid to see the media; 1-getOption("paid_media_message_star_count_max"). |
[in] | paid_media_ | The content of the paid media. |
[in] | caption_ | Message caption; pass null to use an empty caption; 0-getOption("message_caption_length_max") characters. |
[in] | show_caption_above_media_ | True, if the caption must be shown above the media; otherwise, the caption must be shown below the media; not supported in secret chats. |
[in] | payload_ | Bot-provided data for the paid media; bots only. |
|
finalvirtual |