Class: Google::Apis::DisplayvideoV3::CustomLabel
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::CustomLabel
- 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
The key and value of a custom label.
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the label.
-
#value ⇒ String
The value of the label.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomLabel
constructor
A new instance of CustomLabel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CustomLabel
Returns a new instance of CustomLabel.
5015 5016 5017 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5015 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
The key of the label.
Corresponds to the JSON property key
5008 5009 5010 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5008 def key @key end |
#value ⇒ String
The value of the label.
Corresponds to the JSON property value
5013 5014 5015 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5013 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5020 5021 5022 5023 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 5020 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |