Sha256: 2a751456fcac930622c5dc700b944fad32be5c0e7187501a25c65be891c2a79c

Contents?: true

Size: 720 Bytes

Versions: 1

Compression:

Stored size: 720 Bytes

Contents

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

module Vk
  module API
    class Ads < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class StatsCities < Vk::Schema::Object
        # @return [Number] Impressions rate
        attribute :impressions_rate, API::Types::Coercible::Int.optional
        # @return [Number] Clicks rate
        attribute :clicks_rate, API::Types::Coercible::Int.optional
        # @return [Integer] City ID
        attribute :value, API::Types::Coercible::Int.optional
        # @return [String] City name
        attribute :name, 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/ads/stats_cities.rb