Class: Google::Apis::DisplayvideoV2::CombinedAudience
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::CombinedAudience
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v2/classes.rb,
lib/google/apis/displayvideo_v2/representations.rb,
lib/google/apis/displayvideo_v2/representations.rb
Overview
Describes a combined audience resource.
Instance Attribute Summary collapse
-
#combined_audience_id ⇒ Fixnum
Output only.
-
#display_name ⇒ String
Output only.
-
#name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CombinedAudience
constructor
A new instance of CombinedAudience.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CombinedAudience
Returns a new instance of CombinedAudience.
2958 2959 2960 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 2958 def initialize(**args) update!(**args) end |
Instance Attribute Details
#combined_audience_id ⇒ Fixnum
Output only. The unique ID of the combined audience. Assigned by the system.
Corresponds to the JSON property combinedAudienceId
2946 2947 2948 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 2946 def combined_audience_id @combined_audience_id end |
#display_name ⇒ String
Output only. The display name of the combined audience. .
Corresponds to the JSON property displayName
2951 2952 2953 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 2951 def display_name @display_name end |
#name ⇒ String
Output only. The resource name of the combined audience.
Corresponds to the JSON property name
2956 2957 2958 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 2956 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2963 2964 2965 2966 2967 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 2963 def update!(**args) @combined_audience_id = args[:combined_audience_id] if args.key?(:combined_audience_id) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) end |