Sha256: b716a78f7ff2f0582104fe4d48165e55ce72d26f0cd6ea30fc52d6a46a716f99

Contents?: true

Size: 897 Bytes

Versions: 1

Compression:

Stored size: 897 Bytes

Contents

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

module Vk
  module API
    class Docs < Vk::Schema::Namespace
      module Methods
        # Returns documents types available for current user.
        class GetTypes < Schema::Method
          # @!group Properties

          self.open = false
          self.method = 'docs.getTypes'

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :owner_id ID of the user or community that owns the documents. Use a negative value to designate a community ID.
          #   @return [Docs::Methods::GetTypes]

          # @!group Arguments

          # @return [Integer] ID of the user or community that owns the documents. Use a negative value to designate a community ID.
          attribute :owner_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/docs/methods/get_types.rb