Sha256: c83f36baef49f19aeaa589ec6fbb31e78e2c3116bdce6ebefe399698b07dc469
Contents?: true
Size: 1.18 KB
Versions: 1
Compression:
Stored size: 1.18 KB
Contents
# frozen_string_literal: true require 'vk/api/objects' require 'vk/schema/namespace' module Vk module API class Stats < Vk::Schema::Namespace # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json class WallpostStat < Vk::Schema::Object # @return [Integer] Subscribers reach attribute :reach_subscribers, API::Types::Coercible::Int.optional # @return [Integer] Total reach attribute :reach_total, API::Types::Coercible::Int.optional # @return [Integer] LInk clickthrough attribute :links, API::Types::Coercible::Int.optional # @return [Integer] Clickthrough to community attribute :to_group, API::Types::Coercible::Int.optional # @return [Integer] People have joined the group attribute :join_group, API::Types::Coercible::Int.optional # @return [Integer] Reports number attribute :report, API::Types::Coercible::Int.optional # @return [Integer] Hidings number attribute :hide, API::Types::Coercible::Int.optional # @return [Integer] Unsubscribed members attribute :unsubscribe, 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/stats/wallpost_stat.rb |