Class: Google::Apis::DfareportingV3_4::AccountActiveAdSummary
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_4::AccountActiveAdSummary
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_4/classes.rb,
generated/google/apis/dfareporting_v3_4/representations.rb,
generated/google/apis/dfareporting_v3_4/representations.rb
Overview
Gets a summary of active ads in an account.
Instance Attribute Summary collapse
-
#account_id ⇒ Fixnum
ID of the account.
-
#active_ads ⇒ Fixnum
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 ⇒ Fixnum
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.
Constructor Details
#initialize(**args) ⇒ AccountActiveAdSummary
Returns a new instance of AccountActiveAdSummary.
206 207 208 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 206 def initialize(**args) update!(**args) end |
Instance Attribute Details
#account_id ⇒ Fixnum
ID of the account.
Corresponds to the JSON property accountId
183 184 185 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 183 def account_id @account_id end |
#active_ads ⇒ Fixnum
Ads that have been activated for the account
Corresponds to the JSON property activeAds
188 189 190 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 188 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
193 194 195 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 193 def active_ads_limit_tier @active_ads_limit_tier end |
#available_ads ⇒ Fixnum
Ads that can be activated for the account.
Corresponds to the JSON property availableAds
198 199 200 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 198 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
204 205 206 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 204 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
211 212 213 214 215 216 217 |
# File 'generated/google/apis/dfareporting_v3_4/classes.rb', line 211 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 |