Sha256: 42aa7525eb0ee1e324cc852902f12f992b4671cff04465f201fb09f01a7634d3

Contents?: true

Size: 499 Bytes

Versions: 1

Compression:

Stored size: 499 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 TargSettings < Vk::Schema::Object
        # @return [Integer] Ad ID
        attribute :id, API::Types::Coercible::Int.optional
        # @return [Integer] Campaign ID
        attribute :campaign_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/ads/targ_settings.rb