Sha256: 4e42d44fc81fc37975664f64b9d0a5ce118cf6d81fdada2e1cb06899358986ce
Contents?: true
Size: 991 Bytes
Versions: 1
Compression:
Stored size: 991 Bytes
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Board < Vk::Schema::Namespace module Methods # Unpins a pinned topic from the top of a community's discussion board. class UnfixTopic < Schema::Method # @!group Properties self.open = false self.method = 'board.unfixTopic' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :group_id ID of the community that owns the discussion board. # @option arguments [Integer] :topic_id Topic ID. # @return [Board::Methods::UnfixTopic] # @!group Arguments # @return [Integer] ID of the community that owns the discussion board. attribute :group_id, API::Types::Coercible::Int.optional # @return [Integer] Topic ID. attribute :topic_id, API::Types::Coercible::Int.optional end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vk-0.99.5.53.alpha | lib/vk/api/board/methods/unfix_topic.rb |