Class: Google::Apis::CloudtasksV2beta3::Header
- Inherits:
-
Object
- Object
- Google::Apis::CloudtasksV2beta3::Header
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudtasks_v2beta3/classes.rb,
lib/google/apis/cloudtasks_v2beta3/representations.rb,
lib/google/apis/cloudtasks_v2beta3/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.
634 635 636 |
# File 'lib/google/apis/cloudtasks_v2beta3/classes.rb', line 634 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
The Key of the header.
Corresponds to the JSON property key
627 628 629 |
# File 'lib/google/apis/cloudtasks_v2beta3/classes.rb', line 627 def key @key end |
#value ⇒ String
The Value of the header.
Corresponds to the JSON property value
632 633 634 |
# File 'lib/google/apis/cloudtasks_v2beta3/classes.rb', line 632 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
639 640 641 642 |
# File 'lib/google/apis/cloudtasks_v2beta3/classes.rb', line 639 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |