# frozen_string_literal: true module Telegram module Bot module Types class PollAnswer < Base attribute :poll_id, Types::String attribute :user, User attribute :option_ids, Types::Array.of(Types::Integer) end end end end