# 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 MarketAlbumUploadResponse < Vk::Schema::Object # @return [Integer] Community ID attribute :gid, 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 end end end end