Class: Google::Apis::CloudtasksV2beta2::Header

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Header

Returns a new instance of Header.



650
651
652
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 650

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

Instance Attribute Details

#keyString

Corresponds to the JSON property key NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


642
643
644
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 642

def key
  @key
end

#valueString

Corresponds to the JSON property value NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


648
649
650
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 648

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



655
656
657
658
# File 'lib/google/apis/cloudtasks_v2beta2/classes.rb', line 655

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