Sha256: ed739454df9ad5a8120c101195ec8e651b16813ecf87f52189c9a6afe04da8c8

Contents?: true

Size: 756 Bytes

Versions: 1

Compression:

Stored size: 756 Bytes

Contents

# frozen_string_literal: true
require 'vk/api/methods'

module Vk
  module API
    class Fave < Vk::Schema::Namespace
      module Methods
        # Removes link from the user's faves.
        class RemoveLink < Schema::Method
          # @!group Properties

          self.open = false
          self.method = 'fave.removeLink'

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [String] :link_id Link ID (can be obtained by  method).
          #   @return [Fave::Methods::RemoveLink]

          # @!group Arguments

          # @return [String] Link ID (can be obtained by  method).
          attribute :link_id, API::Types::Coercible::String.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/remove_link.rb