Class: Google::Apis::DfareportingV3_3::RemarketingListShare
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV3_3::RemarketingListShare
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v3_3/classes.rb,
generated/google/apis/dfareporting_v3_3/representations.rb,
generated/google/apis/dfareporting_v3_3/representations.rb
Overview
Contains properties of a remarketing list's sharing information. Sharing allows other accounts or advertisers to target to your remarketing lists. This resource can be used to manage remarketing list sharing to other accounts and advertisers.
Instance Attribute Summary collapse
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#remarketing_list_id ⇒ Fixnum
Remarketing list ID.
-
#shared_account_ids ⇒ Array<Fixnum>
Accounts that the remarketing list is shared with.
-
#shared_advertiser_ids ⇒ Array<Fixnum>
Advertisers that the remarketing list is shared with.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RemarketingListShare
constructor
A new instance of RemarketingListShare.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RemarketingListShare
Returns a new instance of RemarketingListShare
9689 9690 9691 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9689 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#remarketingListShare".
Corresponds to the JSON property kind
9672 9673 9674 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9672 def kind @kind end |
#remarketing_list_id ⇒ Fixnum
Remarketing list ID. This is a read-only, auto-generated field.
Corresponds to the JSON property remarketingListId
9677 9678 9679 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9677 def remarketing_list_id @remarketing_list_id end |
#shared_account_ids ⇒ Array<Fixnum>
Accounts that the remarketing list is shared with.
Corresponds to the JSON property sharedAccountIds
9682 9683 9684 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9682 def shared_account_ids @shared_account_ids end |
#shared_advertiser_ids ⇒ Array<Fixnum>
Advertisers that the remarketing list is shared with.
Corresponds to the JSON property sharedAdvertiserIds
9687 9688 9689 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9687 def shared_advertiser_ids @shared_advertiser_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9694 9695 9696 9697 9698 9699 |
# File 'generated/google/apis/dfareporting_v3_3/classes.rb', line 9694 def update!(**args) @kind = args[:kind] if args.key?(:kind) @remarketing_list_id = args[:remarketing_list_id] if args.key?(:remarketing_list_id) @shared_account_ids = args[:shared_account_ids] if args.key?(:shared_account_ids) @shared_advertiser_ids = args[:shared_advertiser_ids] if args.key?(:shared_advertiser_ids) end |