Class: Google::Apis::DfareportingV2_3::AccountActiveAdSummary
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_3::AccountActiveAdSummary
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_3/classes.rb,
generated/google/apis/dfareporting_v2_3/representations.rb,
generated/google/apis/dfareporting_v2_3/representations.rb
Overview
Gets a summary of active ads in an account.
Instance Attribute Summary collapse
-
#account_id ⇒ String
ID of the account.
-
#active_ads ⇒ String
Ads that have been activated for the account Corresponds to the JSON property
activeAds
. -
#active_ads_limit_tier ⇒ String
Maximum number of active ads allowed for the account.
-
#available_ads ⇒ String
Ads that can be activated for the account.
-
#kind ⇒ String
Identifies what kind of resource this is.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountActiveAdSummary
constructor
A new instance of AccountActiveAdSummary.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccountActiveAdSummary
Returns a new instance of AccountActiveAdSummary
257 258 259 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 257 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_id ⇒ String
ID of the account.
Corresponds to the JSON property accountId
234 235 236 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 234 def account_id @account_id end |
#active_ads ⇒ String
Ads that have been activated for the account
Corresponds to the JSON property activeAds
239 240 241 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 239 def active_ads @active_ads end |
#active_ads_limit_tier ⇒ String
Maximum number of active ads allowed for the account.
Corresponds to the JSON property activeAdsLimitTier
244 245 246 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 244 def active_ads_limit_tier @active_ads_limit_tier end |
#available_ads ⇒ String
Ads that can be activated for the account.
Corresponds to the JSON property availableAds
249 250 251 |
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 249 def available_ads @available_ads end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#accountActiveAdSummary".
Corresponds to the JSON property kind
255 256 257 |
# File 'generated/google/apis/dfareporting_v2_3/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_3/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 |