atipugin/telegram-bot-ruby

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class ChatMemberAdministrator < Base
        attribute :status, Types::String.constrained(eql: 'administrator').default('administrator')
        attribute :user, User
        attribute :can_be_edited, Types::Bool
        attribute :is_anonymous, Types::Bool
        attribute :can_manage_chat, Types::Bool
        attribute :can_delete_messages, Types::Bool
        attribute :can_manage_video_chats, Types::Bool
        attribute :can_restrict_members, Types::Bool
        attribute :can_promote_members, Types::Bool
        attribute :can_change_info, Types::Bool
        attribute :can_invite_users, Types::Bool
        attribute? :can_post_messages, Types::Bool
        attribute? :can_edit_messages, Types::Bool
        attribute? :can_pin_messages, Types::Bool
        attribute? :can_post_stories, Types::Bool
        attribute? :can_edit_stories, Types::Bool
        attribute? :can_delete_stories, Types::Bool
        attribute? :can_manage_topics, Types::Bool
        attribute? :custom_title, Types::String
      end
    end
  end
end