Class: Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ServicesPlannableUserList
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ServicesPlannableUserList
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/searchads360_v23/classes.rb,
lib/google/apis/searchads360_v23/representations.rb,
lib/google/apis/searchads360_v23/representations.rb
Overview
A plannable user list.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The name of the user list.
-
#plannable_status ⇒ String
The plannable status of the user list.
-
#plannable_user_list_metadata ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ServicesPlannableUserListMetadata
The metadata associated with a plannable user list.
-
#user_list_info ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23CommonUserListInfo
A User List criterion.
-
#user_list_type ⇒ String
The user list type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V23ServicesPlannableUserList
constructor
A new instance of GoogleAdsSearchads360V23ServicesPlannableUserList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V23ServicesPlannableUserList
Returns a new instance of GoogleAdsSearchads360V23ServicesPlannableUserList.
52372 52373 52374 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52372 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The name of the user list.
Corresponds to the JSON property displayName
52349 52350 52351 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52349 def display_name @display_name end |
#plannable_status ⇒ String
The plannable status of the user list.
Corresponds to the JSON property plannableStatus
52354 52355 52356 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52354 def plannable_status @plannable_status end |
#plannable_user_list_metadata ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ServicesPlannableUserListMetadata
The metadata associated with a plannable user list.
Corresponds to the JSON property plannableUserListMetadata
52359 52360 52361 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52359 def @plannable_user_list_metadata end |
#user_list_info ⇒ Google::Apis::Searchads360V23::GoogleAdsSearchads360V23CommonUserListInfo
A User List criterion. Represents a user list that is defined by the
advertiser to be targeted.
Corresponds to the JSON property userListInfo
52365 52366 52367 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52365 def user_list_info @user_list_info end |
#user_list_type ⇒ String
The user list type.
Corresponds to the JSON property userListType
52370 52371 52372 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52370 def user_list_type @user_list_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
52377 52378 52379 52380 52381 52382 52383 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52377 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @plannable_status = args[:plannable_status] if args.key?(:plannable_status) @plannable_user_list_metadata = args[:plannable_user_list_metadata] if args.key?(:plannable_user_list_metadata) @user_list_info = args[:user_list_info] if args.key?(:user_list_info) @user_list_type = args[:user_list_type] if args.key?(:user_list_type) end |