Sha256: 880048c3c24bfa240261f500806ffddff4568c926d5f0b8e3818066112cce836

Contents?: true

Size: 1001 Bytes

Versions: 1

Compression:

Stored size: 1001 Bytes

Contents

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

module Vk
  module API
    class Fave < Vk::Schema::Namespace
      module Methods
        # Returns a list of users whom the current user has bookmarked.; ;
        class GetUsers < Schema::Method
          # @!group Properties

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

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :offset Offset needed to return a specific subset of users.
          #   @option arguments [Integer] :count Number of users to return.
          #   @return [Fave::Methods::GetUsers]

          # @!group Arguments

          # @return [Integer] Offset needed to return a specific subset of users.
          attribute :offset, API::Types::Coercible::Int.optional
          # @return [Integer] Number of users to return.
          attribute :count, 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/get_users.rb