Sha256: 123fb9ca0c40e0e6dab712fbee8261a82e59883fd0eaf6efbf250f627cf2dae0
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
# frozen_string_literal: true require 'vk/api/objects' require 'vk/schema/namespace' module Vk module API class Groups < Vk::Schema::Namespace # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json class CountersGroup < Vk::Schema::Object # @return [Integer] Photos number attribute :photos, API::Types::Coercible::Int.optional # @return [Integer] Photo albums number attribute :albums, API::Types::Coercible::Int.optional # @return [Integer] Topics number attribute :topics, API::Types::Coercible::Int.optional # @return [Integer] Videos number attribute :videos, API::Types::Coercible::Int.optional # @return [Integer] Audios number attribute :audios, API::Types::Coercible::Int.optional # @return [Integer] Docs number attribute :docs, API::Types::Coercible::Int.optional # @return [Integer] Market items number attribute :market, 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/groups/counters_group.rb |