Class: Google::Apis::CloudtasksV2::Header

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudtasks_v2/classes.rb,
lib/google/apis/cloudtasks_v2/representations.rb,
lib/google/apis/cloudtasks_v2/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.



607
608
609
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 607

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

Instance Attribute Details

#keyString

The Key of the header. Corresponds to the JSON property key

Returns:

  • (String)


600
601
602
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 600

def key
  @key
end

#valueString

The Value of the header. Corresponds to the JSON property value

Returns:

  • (String)


605
606
607
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 605

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



612
613
614
615
# File 'lib/google/apis/cloudtasks_v2/classes.rb', line 612

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