Class GetUpdatesMethod.
see | |
---|---|
package | Default |
create(array|null $data = null
) : \TgBotApi\BotApiBase\Method\GetUpdatesMethod
array
null
\TgBotApi\BotApiBase\Exception\BadArgumentException |
---|
\TgBotApi\BotApiBase\Method\GetUpdatesMethod
fill(array $data, array $forbidden = array()
)
array
array
\TgBotApi\BotApiBase\Exception\BadArgumentException |
---|
$allowedUpdates : array<mixed,string> | null
For example, specify [“message”, “edited_channel_post”, “callback_query”] to only receive updates of these types. See Update for a complete list of available update types. Specify an empty list to receive all updates regardless of type (default). If not specified, the previous setting will be used.
Please note that this parameter doesn't affect updates created before the call to the getUpdates, so unwanted updates may be received for a short period of time.
$limit : integer | null
$offset : integer | null
Must be greater by one than the highest among the identifiers of previously received updates. By default, updates starting with the earliest unconfirmed update are returned. An update is considered confirmed as soon as getUpdates is called with an offset higher than its update_id. The negative offset can be specified to retrieve updates starting from -offset update from the end of the updates queue. All previous updates will forgotten.
$timeout : integer | null
Should be positive, short polling should be used for testing purposes only.