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.
12801 12802 12803 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12801 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
12783 12784 12785 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12783 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`
12789 12790 12791 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12789 def name @name end |
#plannable_status ⇒ String
Output only. The plannability status of the user list.
Corresponds to the JSON property plannableStatus
12794 12795 12796 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12794 def plannable_status @plannable_status end |
#user_list_type ⇒ String
Output only. The type of the user list.
Corresponds to the JSON property userListType
12799 12800 12801 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12799 def user_list_type @user_list_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12806 12807 12808 12809 12810 12811 |
# File 'lib/google/apis/displayvideo_v4/classes.rb', line 12806 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 |