atipugin/telegram-bot-ruby

View on GitHub
lib/telegram/bot/types/video_chat_participants_invited.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class VideoChatParticipantsInvited < Base
        attribute :users, Types::Array.of(User)
      end
    end
  end
end