class Google::Apis::ContentV2::AccountIdentifier
Attributes
aggregator_id[RW]
The aggregator ID, set for aggregators and subaccounts (in that case, it represents the aggregator of the subaccount). Corresponds to the JSON property `aggregatorId` @return [Fixnum]
merchant_id[RW]
The merchant account ID, set for individual accounts and subaccounts. Corresponds to the JSON property `merchantId` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/content_v2/classes.rb, line 309 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/content_v2/classes.rb, line 314 def update!(**args) @aggregator_id = args[:aggregator_id] if args.key?(:aggregator_id) @merchant_id = args[:merchant_id] if args.key?(:merchant_id) end