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.
52300 52301 52302 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52300 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The name of the user list.
Corresponds to the JSON property displayName
52277 52278 52279 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52277 def display_name @display_name end |
#plannable_status ⇒ String
The plannable status of the user list.
Corresponds to the JSON property plannableStatus
52282 52283 52284 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52282 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
52287 52288 52289 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52287 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
52293 52294 52295 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52293 def user_list_info @user_list_info end |
#user_list_type ⇒ String
The user list type.
Corresponds to the JSON property userListType
52298 52299 52300 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52298 def user_list_type @user_list_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
52305 52306 52307 52308 52309 52310 52311 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 52305 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 |