Class: Google::Apis::DfareportingV2_5::AccountActiveAdSummary

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v2_5/classes.rb,
generated/google/apis/dfareporting_v2_5/representations.rb,
generated/google/apis/dfareporting_v2_5/representations.rb

Overview

Gets a summary of active ads in an account.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AccountActiveAdSummary

Returns a new instance of AccountActiveAdSummary.



257
258
259
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 257

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_idString

ID of the account. Corresponds to the JSON property accountId

Returns:

  • (String)


234
235
236
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 234

def 
  @account_id
end

#active_adsString

Ads that have been activated for the account Corresponds to the JSON property activeAds

Returns:

  • (String)


239
240
241
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 239

def active_ads
  @active_ads
end

#active_ads_limit_tierString

Maximum number of active ads allowed for the account. Corresponds to the JSON property activeAdsLimitTier

Returns:

  • (String)


244
245
246
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 244

def active_ads_limit_tier
  @active_ads_limit_tier
end

#available_adsString

Ads that can be activated for the account. Corresponds to the JSON property availableAds

Returns:

  • (String)


249
250
251
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 249

def available_ads
  @available_ads
end

#kindString

Identifies what kind of resource this is. Value: the fixed string " dfareporting#accountActiveAdSummary". Corresponds to the JSON property kind

Returns:

  • (String)


255
256
257
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 255

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



262
263
264
265
266
267
268
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 262

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @active_ads = args[:active_ads] if args.key?(:active_ads)
  @active_ads_limit_tier = args[:active_ads_limit_tier] if args.key?(:active_ads_limit_tier)
  @available_ads = args[:available_ads] if args.key?(:available_ads)
  @kind = args[:kind] if args.key?(:kind)
end