Sha256: 5415381713890db48a257684948a55682728f5a30f89e9818b6fa9384413e50c
Contents?: true
Size: 636 Bytes
Versions: 5
Compression:
Stored size: 636 Bytes
Contents
# frozen_string_literal: true module Telegram module Bot module Types class InlineQueryResultCachedVoice < Base attribute :type, Types::String.constrained(eql: 'voice').default('voice') attribute :id, Types::String attribute :voice_file_id, Types::String attribute :title, Types::String attribute? :caption, Types::String attribute? :parse_mode, Types::String attribute? :caption_entities, Types::Array.of(MessageEntity) attribute? :reply_markup, InlineKeyboardMarkup attribute? :input_message_content, InputMessageContent end end end end
Version data entries
5 entries across 5 versions & 1 rubygems