Class: Google::Apis::DisplayvideoV3::ContactInfoList
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::ContactInfoList
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb
Overview
Wrapper message for a list of contact information defining Customer Match audience members.
Instance Attribute Summary collapse
-
#consent ⇒ Google::Apis::DisplayvideoV3::Consent
User consent status.
-
#contact_infos ⇒ Array<Google::Apis::DisplayvideoV3::ContactInfo>
A list of ContactInfo objects defining Customer Match audience members.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContactInfoList
constructor
A new instance of ContactInfoList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ContactInfoList
Returns a new instance of ContactInfoList.
3795 3796 3797 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3795 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consent ⇒ Google::Apis::DisplayvideoV3::Consent
User consent status.
Corresponds to the JSON property consent
3786 3787 3788 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3786 def @consent end |
#contact_infos ⇒ Array<Google::Apis::DisplayvideoV3::ContactInfo>
A list of ContactInfo objects defining Customer Match audience members. The
size of members after splitting the contact_infos mustn't be greater than 500,
000.
Corresponds to the JSON property contactInfos
3793 3794 3795 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3793 def contact_infos @contact_infos end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3800 3801 3802 3803 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 3800 def update!(**args) @consent = args[:consent] if args.key?(:consent) @contact_infos = args[:contact_infos] if args.key?(:contact_infos) end |