Class: Google::Apis::DisplayvideoV3::CustomLabel

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CustomLabel

Returns a new instance of CustomLabel.



4913
4914
4915
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4913

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#keyString

The key of the label. Corresponds to the JSON property key

Returns:

  • (String)


4906
4907
4908
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4906

def key
  @key
end

#valueString

The value of the label. Corresponds to the JSON property value

Returns:

  • (String)


4911
4912
4913
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4911

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4918
4919
4920
4921
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4918

def update!(**args)
  @key = args[:key] if args.key?(:key)
  @value = args[:value] if args.key?(:value)
end