Class: Google::Apis::DisplayvideoV4::PlannableUserList
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV4::PlannableUserList
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v4/classes.rb,
lib/google/apis/displayvideo_v4/representations.rb,
lib/google/apis/displayvideo_v4/representations.rb
Overview
A plannable user list used for reach forecasting.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#plannable_status ⇒ String
Output only.
-
#user_list_type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PlannableUserList
constructor
A new instance of PlannableUserList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PlannableUserList
Returns a new instance of PlannableUserList.
12784 12785 12786 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12784 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Output only. The display name of the user list.
Corresponds to the JSON property displayName
12766 12767 12768 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12766 def display_name @display_name end |
#name ⇒ String
Output only. The resource name identifying the user list. Format: advertisers/
advertiser_id/userLists/user_list_id`
Corresponds to the JSON propertyname`
12772 12773 12774 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12772 def name @name end |
#plannable_status ⇒ String
Output only. The plannability status of the user list.
Corresponds to the JSON property plannableStatus
12777 12778 12779 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12777 def plannable_status @plannable_status end |
#user_list_type ⇒ String
Output only. The type of the user list.
Corresponds to the JSON property userListType
12782 12783 12784 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12782 def user_list_type @user_list_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12789 12790 12791 12792 12793 12794 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12789 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @plannable_status = args[:plannable_status] if args.key?(:plannable_status) @user_list_type = args[:user_list_type] if args.key?(:user_list_type) end |