887 B
887 B
title | description |
---|---|
inlineQueryResultVoice | Represents a voice cached on the telegram server |
Constructor: inlineQueryResultVoice
Represents a voice cached on the telegram server
Attributes:
Name | Type | Required | Description |
---|---|---|---|
id | string | Yes | Unique identifier of this result |
voice | voice | Yes | The voice |
title | string | Yes | Title of the voice file |
Type: InlineQueryResult
Example:
$inlineQueryResultVoice = ['_' => 'inlineQueryResultVoice', 'id' => string, 'voice' => voice, 'title' => string, ];
Or, if you're into Lua:
inlineQueryResultVoice={_='inlineQueryResultVoice', id=string, voice=voice, title=string, }