Sha256: 0c3ad6c4d75d0997ee38181e838f25ee777d3a56d6bc73a3247cd83dc538e5b0
Contents?: true
Size: 1.09 KB
Versions: 1
Compression:
Stored size: 1.09 KB
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Ads < Vk::Schema::Namespace module Methods # Edits clients of an advertising agency. class UpdateClients < Schema::Method # @!group Properties self.open = false self.method = 'ads.updateClients' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :account_id Advertising account ID. # @option arguments [String] :data Serialized JSON array of objects that describe changes in clients. Description of 'client_mod' objects see below. # @return [Ads::Methods::UpdateClients] # @!group Arguments # @return [Integer] Advertising account ID. attribute :account_id, API::Types::Coercible::Int.optional # @return [String] Serialized JSON array of objects that describe changes in clients. Description of 'client_mod' objects see below. attribute :data, 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/update_clients.rb |