Sha256: c260b51e5db3701aae6d9f69193f47c29b1dd5fdde0bf0add591c2782f7879c4

Contents?: true

Size: 565 Bytes

Versions: 1

Compression:

Stored size: 565 Bytes

Contents

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

module Vk
  module API
    class Newsfeed < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class ItemPhotoTag < Vk::Schema::Object
        # @return [Hash] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
        attribute :photo_tags, API::Types::Coercible::Hash.optional
        # @return [Integer] Post ID
        attribute :post_id, API::Types::Coercible::Int.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/newsfeed/item_photo_tag.rb