Sha256: ddb3d2893e4d1a34926b74de64d8570459fe58896c58b49d61844f3795d995a0

Contents?: true

Size: 976 Bytes

Versions: 1

Compression:

Stored size: 976 Bytes

Contents

# frozen_string_literal: true
require 'vk/api/methods'

module Vk
  module API
    class Ads < Vk::Schema::Namespace
      module Methods
        # Allows to get detailed information about the ad post reach.
        class GetAdsPostsReach < Schema::Method
          # @!group Properties

          self.open = false
          self.method = 'ads.getAdsPostsReach'

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :account_id Advertising account ID.
          #   @option arguments [String] :ads_ids Ads IDS separated by comma.
          #   @return [Ads::Methods::GetAdsPostsReach]

          # @!group Arguments

          # @return [Integer] Advertising account ID.
          attribute :account_id, API::Types::Coercible::Int.optional
          # @return [String] Ads IDS separated by comma.
          attribute :ads_ids, API::Types::Coercible::String.optional
        end
      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/methods/get_ads_posts_reach.rb