Sha256: 8ced51588716195d5eabfa1e1019e7d7e7ec27268c9b5cb9c1c3549a307cc557

Contents?: true

Size: 742 Bytes

Versions: 1

Compression:

Stored size: 742 Bytes

Contents

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

module Vk
  module API
    class Ads < Vk::Schema::Namespace
      module Methods
        # Returns current budget of the advertising account.
        class GetBudget < Schema::Method
          # @!group Properties

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

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :account_id Advertising account ID.
          #   @return [Ads::Methods::GetBudget]

          # @!group Arguments

          # @return [Integer] Advertising account ID.
          attribute :account_id, API::Types::Coercible::Int.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_budget.rb