Sha256: d3afe298f44a6aecc60cbfba8f94191cf9c5b491856685390c6d70e8b95c404b
Contents?: true
Size: 638 Bytes
Versions: 1
Compression:
Stored size: 638 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 OwnerUploadResponse < 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/owner_upload_response.rb |