Class: Google::Apis::DisplayvideoV1::GoogleAudience
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV1::GoogleAudience
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/displayvideo_v1/classes.rb,
generated/google/apis/displayvideo_v1/representations.rb,
generated/google/apis/displayvideo_v1/representations.rb
Overview
Describes a Google audience resource. Includes Google audience lists.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Output only.
-
#google_audience_id ⇒ Fixnum
Output only.
-
#google_audience_type ⇒ String
Output only.
-
#name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAudience
constructor
A new instance of GoogleAudience.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAudience
Returns a new instance of GoogleAudience.
4386 4387 4388 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 4386 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Output only. The display name of the Google audience. .
Corresponds to the JSON property displayName
4369 4370 4371 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 4369 def display_name @display_name end |
#google_audience_id ⇒ Fixnum
Output only. The unique ID of the Google audience. Assigned by the system.
Corresponds to the JSON property googleAudienceId
4374 4375 4376 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 4374 def google_audience_id @google_audience_id end |
#google_audience_type ⇒ String
Output only. The type of Google audience. .
Corresponds to the JSON property googleAudienceType
4379 4380 4381 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 4379 def google_audience_type @google_audience_type end |
#name ⇒ String
Output only. The resource name of the google audience.
Corresponds to the JSON property name
4384 4385 4386 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 4384 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4391 4392 4393 4394 4395 4396 |
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 4391 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @google_audience_id = args[:google_audience_id] if args.key?(:google_audience_id) @google_audience_type = args[:google_audience_type] if args.key?(:google_audience_type) @name = args[:name] if args.key?(:name) end |