Sha256: cd98adb43e757b19709b9a1a33ae06e9c36bc7f78e1e9e878aabbe80027cdde1

Contents?: true

Size: 637 Bytes

Versions: 1

Compression:

Stored size: 637 Bytes

Contents

# frozen_string_literal: true
require 'vk/api/objects'
require 'vk/schema/namespace'

module Vk
  module API
    class Photos < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class WallUploadResponse < Vk::Schema::Object
        # @return [Integer] Upload server number
        attribute :server, API::Types::Coercible::Int.optional
        # @return [String] Uploaded photo data
        attribute :photo, API::Types::Coercible::String.optional
        # @return [String] Uploading hash
        attribute :hash, API::Types::Coercible::String.optional
      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/photos/wall_upload_response.rb