@@ -1526,6 +1526,20 @@ about its business.
15261526
15271527 .. versionadded :: 0.7
15281528
1529+ .. py :method :: send_dice([emoji, reply_to=None , extra=None , attach=None , notify=True ])
1530+
1531+ Use this method to send a dice, which will have a random value from 1 to 6
1532+
1533+ :param str emoji: Emoji on which the dice throw animation is based. Currently, must be one of “🎲” or “🎯”. Defauts to “🎲”
1534+ :param int reply_to: The ID of the :py:class: `~botogram.Message ` this one is replying to
1535+ :param object attach: An extra thing to attach to the message
1536+ :param object extra: An extra reply interface object to attach
1537+ :param bool notify: If you want to trigger a notification on the client
1538+ :returns: The message you sent
1539+ :rtype: ~botogram.Message
1540+
1541+ .. versionadded :: 0.7
1542+
15291543 .. py :method :: delete_message(message)
15301544
15311545 Delete the message with the provided ID or :py:class: `~botogram.Message ` object.
@@ -1856,6 +1870,12 @@ about its business.
18561870
18571871 *This attribute can be None if the message isn't a venue. *
18581872
1873+ .. py :attribute :: dice
1874+
1875+ A :py:class: `~botogram.Dice ` object, when this message is a dice
1876+
1877+ *This attribute can be None if it's not provided by Telegram. *
1878+
18591879 .. py :attribute :: channel_post_author
18601880
18611881 The author of the message. This only works if the message is a channel
@@ -2531,6 +2551,19 @@ about its business.
25312551
25322552 .. versionadded :: 0.7
25332553
2554+ .. py :method :: reply_with_dice([emoji, extra=None , attach=None , notify=True ])
2555+
2556+ Use this method to reply with a dice, which will have a random value from 1 to 6
2557+
2558+ :param str emoji: Emoji on which the dice throw animation is based. Currently, must be one of “🎲” or “🎯”. Defauts to “🎲”
2559+ :param object attach: An extra thing to attach to the message
2560+ :param object extra: An extra reply interface object to attach
2561+ :param bool notify: If you want to trigger a notification on the client
2562+ :returns: The message you sent
2563+ :rtype: ~botogram.Message
2564+
2565+ .. versionadded :: 0.7
2566+
25342567.. py :class :: botogram.Photo
25352568
25362569 This class provides a general representation of a photo received by your bot.
@@ -3135,6 +3168,20 @@ about its business.
31353168 Number of users that voted for this option.
31363169
31373170
3171+ .. py :class :: botogram.Dice
3172+
3173+ This object represents a dice with a random value from 1 to 6 for currently supported base emoji.
3174+
3175+ .. py :attribute :: emoji
3176+
3177+ Emoji on which the dice throw animation is based
3178+
3179+ .. py :attribute :: value
3180+
3181+ Value of the dice, 1-6 for currently supported base emoji
3182+
3183+ .. versionadded :: 0.7
3184+
31383185.. py :class :: botogram.Update
31393186
31403187 This class represents an update received by the bot. You should not need to
0 commit comments