Class: Google::Apis::DisplayvideoV3::LocationList
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::LocationList
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb
Overview
A list of locations used for targeting.
Instance Attribute Summary collapse
-
#advertiser_id ⇒ Fixnum
Required.
-
#display_name ⇒ String
Required.
-
#location_list_id ⇒ Fixnum
Output only.
-
#location_type ⇒ String
Required.
-
#name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LocationList
constructor
A new instance of LocationList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LocationList
Returns a new instance of LocationList.
9456 9457 9458 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9456 def initialize(**args) update!(**args) end |
Instance Attribute Details
#advertiser_id ⇒ Fixnum
Required. Immutable. The unique ID of the advertiser the location list belongs
to.
Corresponds to the JSON property advertiserId
9432 9433 9434 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9432 def advertiser_id @advertiser_id end |
#display_name ⇒ String
Required. The display name of the location list. Must be UTF-8 encoded with a
maximum size of 240 bytes.
Corresponds to the JSON property displayName
9438 9439 9440 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9438 def display_name @display_name end |
#location_list_id ⇒ Fixnum
Output only. The unique ID of the location list. Assigned by the system.
Corresponds to the JSON property locationListId
9443 9444 9445 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9443 def location_list_id @location_list_id end |
#location_type ⇒ String
Required. Immutable. The type of location. All locations in the list will
share this type.
Corresponds to the JSON property locationType
9449 9450 9451 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9449 def location_type @location_type end |
#name ⇒ String
Output only. The resource name of the location list.
Corresponds to the JSON property name
9454 9455 9456 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9454 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9461 9462 9463 9464 9465 9466 9467 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 9461 def update!(**args) @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id) @display_name = args[:display_name] if args.key?(:display_name) @location_list_id = args[:location_list_id] if args.key?(:location_list_id) @location_type = args[:location_type] if args.key?(:location_type) @name = args[:name] if args.key?(:name) end |