Sha256: 84ed6c3c9305c06b2b85464bb1d2976e26f0bee7bfbe710528559585ce185fda
Contents?: true
Size: 699 Bytes
Versions: 1
Compression:
Stored size: 699 Bytes
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Fave < Vk::Schema::Namespace module Methods # Adds a community to user faves. class AddGroup < Schema::Method # @!group Properties self.open = false self.method = 'fave.addGroup' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :group_id Community ID. # @return [Fave::Methods::AddGroup] # @!group Arguments # @return [Integer] Community ID. attribute :group_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/fave/methods/add_group.rb |