Sha256: eef0c97fccd4f34bd6fed87282f13e359582bba7bce2161c0c8e0c556c6f659e

Contents?: true

Size: 840 Bytes

Versions: 1

Compression:

Stored size: 840 Bytes

Contents

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

module Vk
  module API
    class Docs < Vk::Schema::Namespace
      module Methods
        # Returns the server address for document upload.
        class GetUploadServer < Schema::Method
          # @!group Properties

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

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :group_id Community ID (if the document will be uploaded to the community).
          #   @return [Docs::Methods::GetUploadServer]

          # @!group Arguments

          # @return [Integer] Community ID (if the document will be uploaded to the community).
          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/docs/methods/get_upload_server.rb