Sha256: b8d61d39a066b7c72ec1d2b5b8bf85984e9703dd213b45e12e013b3ee390efbe
Contents?: true
Size: 957 Bytes
Versions: 1
Compression:
Stored size: 957 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 MarketUploadResponse < Vk::Schema::Object # @return [Integer] Community ID attribute :group_id, API::Types::Coercible::Int.optional # @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 # @return [String] Crop data attribute :crop_data, API::Types::Coercible::String.optional # @return [String] Crop hash attribute :crop_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/market_upload_response.rb |