Sha256: f0770f65cb5853e32beb363e9af1e42ccd827b79fa45d6758d3fffeece255860
Contents?: true
Size: 829 Bytes
Versions: 15
Compression:
Stored size: 829 Bytes
Contents
module Qismo module Objects # Telegram channel object # class TelegramChannel < Qismo::Object # @!attribute [r] id # @return [Integer] attribute? :id, Types::Int.optional # @!attribute [r] is_active # @return [TrueClass,FalseClass] attribute? :is_active, Types::Bool.optional # @!attribute [r] name # @return [String] attribute? :name, Types::String.optional # @!attribute [r] username # @return [String] attribute? :username, Types::String.optional # @!attribute [r] badge_url # @return [String] attribute? :badge_url, Types::String.optional # @!attribute [r] use_channel_responder # @return [TrueClass,FalseClass] attribute? :use_channel_responder, Types::Bool.optional end end end
Version data entries
15 entries across 15 versions & 1 rubygems