Sha256: b315b3e257e13b6c14ee234cc1576ba2b7dc166a30efcaecbbb201e417eae3b0
Contents?: true
Size: 742 Bytes
Versions: 1
Compression:
Stored size: 742 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 PhotoUploadResponse < Vk::Schema::Object # @return [Integer] Upload server number attribute :server, API::Types::Coercible::Int.optional # @return [String] Uploaded photos data attribute :photos_list, API::Types::Coercible::String.optional # @return [Integer] Album ID attribute :aid, API::Types::Coercible::Int.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/photo_upload_response.rb |