forked from TelegramBot/Api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForceReply.php
More file actions
88 lines (77 loc) · 1.95 KB
/
ForceReply.php
File metadata and controls
88 lines (77 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
namespace TelegramBot\Api\Types;
use TelegramBot\Api\BaseType;
/**
* Class ForceReply
* Upon receiving a message with this object, Telegram clients will display a reply interface to the user
* (act as if the user has selected the bot‘s message and tapped ’Reply').This can be extremely useful
* if you want to create user-friendly step-by-step interfaces without having to sacrifice privacy mode.
*
* @package TelegramBot\Api\Types
*/
class ForceReply extends BaseType
{
/**
* {@inheritdoc}
*
* @var array
*/
static protected $requiredParams = ['force_reply'];
/**
* {@inheritdoc}
*
* @var array
*/
static protected $map = [
'force_reply' => true,
'selective' => true
];
/**
* Shows reply interface to the user, as if they manually selected the bot‘s message and tapped ’Reply'
*
* @var bool
*/
protected $forceReply;
/**
* Optional. Use this parameter if you want to show the keyboard to specific users only.
* Targets:
* 1) users that are @mentioned in the text of the Message object;
* 2) if the bot's message is a reply (has reply_to_message_id), sender of the original message.
*
* @var bool
*/
protected $selective;
public function __construct($forceReply = true, $selective = null)
{
$this->forceReply = $forceReply;
$this->selective = $selective;
}
/**
* @return boolean
*/
public function isForceReply()
{
return $this->forceReply;
}
/**
* @param boolean $forceReply
*/
public function setForceReply($forceReply)
{
$this->forceReply = $forceReply;
}
/**
* @return boolean
*/
public function isSelective()
{
return $this->selective;
}
/**
* @param boolean $selective
*/
public function setSelective($selective)
{
$this->selective = $selective;
}
}