Class: Google::Apis::ContentV2::AccountIdentifier
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::AccountIdentifier
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#aggregator_id ⇒ Fixnum
The aggregator ID, set for aggregators and subaccounts (in that case, it represents the aggregator of the subaccount).
-
#merchant_id ⇒ Fixnum
The merchant account ID, set for individual accounts and subaccounts.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountIdentifier
constructor
A new instance of AccountIdentifier.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccountIdentifier
Returns a new instance of AccountIdentifier
191 192 193 |
# File 'generated/google/apis/content_v2/classes.rb', line 191 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aggregator_id ⇒ Fixnum
The aggregator ID, set for aggregators and subaccounts (in that case, it
represents the aggregator of the subaccount).
Corresponds to the JSON property aggregatorId
184 185 186 |
# File 'generated/google/apis/content_v2/classes.rb', line 184 def aggregator_id @aggregator_id end |
#merchant_id ⇒ Fixnum
The merchant account ID, set for individual accounts and subaccounts.
Corresponds to the JSON property merchantId
189 190 191 |
# File 'generated/google/apis/content_v2/classes.rb', line 189 def merchant_id @merchant_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
196 197 198 199 |
# File 'generated/google/apis/content_v2/classes.rb', line 196 def update!(**args) @aggregator_id = args[:aggregator_id] if args.key?(:aggregator_id) @merchant_id = args[:merchant_id] if args.key?(:merchant_id) end |