Class: Google::Apis::CloudtasksV2beta2::Header
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2beta2::Header
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudtasks_v2beta2/classes.rb,
lib/google/apis/cloudtasks_v2beta2/representations.rb,
lib/google/apis/cloudtasks_v2beta2/representations.rb
Overview
Defines a header message. A header can have a key and a value.
Instance Attribute Summary collapse
-
#key ⇒ String
The key of the header.
-
#value ⇒ String
The value of the header.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Header
constructor
A new instance of Header.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Header
Returns a new instance of Header.
707 708 709 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 707 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
The key of the header.
Corresponds to the JSON property key
700 701 702 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 700 def key @key end |
#value ⇒ String
The value of the header.
Corresponds to the JSON property value
705 706 707 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 705 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
712 713 714 715 |
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 712 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |