Class: Google::Apis::DisplayvideoV1::CustomList
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::CustomList
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/displayvideo_v1/classes.rb,
generated/google/apis/displayvideo_v1/representations.rb,
generated/google/apis/displayvideo_v1/representations.rb
Overview
Describes a custom list entity, such as a custom affinity or custom intent audience list.
Instance Attribute Summary collapse
-
#custom_list_id ⇒ Fixnum
Output only.
-
#display_name ⇒ String
Output only.
-
#name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomList
constructor
A new instance of CustomList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomList
Returns a new instance of CustomList.
3080 3081 3082 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 3080 def initialize(**args) update!(**args) end |
Instance Attribute Details
#custom_list_id ⇒ Fixnum
Output only. The unique ID of the custom list. Assigned by the system.
Corresponds to the JSON property customListId
3068 3069 3070 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 3068 def custom_list_id @custom_list_id end |
#display_name ⇒ String
Output only. The display name of the custom list. .
Corresponds to the JSON property displayName
3073 3074 3075 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 3073 def display_name @display_name end |
#name ⇒ String
Output only. The resource name of the custom list.
Corresponds to the JSON property name
3078 3079 3080 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 3078 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3085 3086 3087 3088 3089 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 3085 def update!(**args) @custom_list_id = args[:custom_list_id] if args.key?(:custom_list_id) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) end |