Sha256: 09142b1bf1589314edf0380182d4f6c3b9336c62f83406a8529bc90ff44db19e
Contents?: true
Size: 888 Bytes
Versions: 1
Compression:
Stored size: 888 Bytes
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Groups < Vk::Schema::Namespace module Methods # Allows to delete a link from the community. class DeleteLink < Schema::Method # @!group Properties self.open = false self.method = 'groups.deleteLink' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :group_id Community ID. # @option arguments [Integer] :link_id LInk ID. # @return [Groups::Methods::DeleteLink] # @!group Arguments # @return [Integer] Community ID. attribute :group_id, API::Types::Coercible::Int.optional # @return [Integer] LInk ID. attribute :link_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/groups/methods/delete_link.rb |