Class: Google::Apis::JobsV2::ResponseMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/jobs_v2/classes.rb,
generated/google/apis/jobs_v2/representations.rb,
generated/google/apis/jobs_v2/representations.rb

Overview

Output only. Additional information returned to client, such as debugging information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ResponseMetadata

Returns a new instance of ResponseMetadata



3001
3002
3003
# File 'generated/google/apis/jobs_v2/classes.rb', line 3001

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

Instance Attribute Details

#experiment_id_listArray<Fixnum>

Identifiers for the versions of the search algorithm used during this API invocation if multiple algorithms are used. The default value is empty. For search response only. Corresponds to the JSON property experimentIdList

Returns:

  • (Array<Fixnum>)


2988
2989
2990
# File 'generated/google/apis/jobs_v2/classes.rb', line 2988

def experiment_id_list
  @experiment_id_list
end

#modeString

For search response only. Indicates the mode of a performed search. Corresponds to the JSON property mode

Returns:

  • (String)


2993
2994
2995
# File 'generated/google/apis/jobs_v2/classes.rb', line 2993

def mode
  @mode
end

#request_idString

A unique id associated with this call. This id is logged for tracking purposes. Corresponds to the JSON property requestId

Returns:

  • (String)


2999
3000
3001
# File 'generated/google/apis/jobs_v2/classes.rb', line 2999

def request_id
  @request_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3006
3007
3008
3009
3010
# File 'generated/google/apis/jobs_v2/classes.rb', line 3006

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