Class: Google::Apis::JobsV2::ResponseMetadata
- Inherits:
-
Object
- Object
- Google::Apis::JobsV2::ResponseMetadata
- 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
-
#experiment_id_list ⇒ Array<Fixnum>
Identifiers for the versions of the search algorithm used during this API invocation if multiple algorithms are used.
-
#mode ⇒ String
For search response only.
-
#request_id ⇒ String
A unique id associated with this call.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResponseMetadata
constructor
A new instance of ResponseMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ResponseMetadata
Returns a new instance of ResponseMetadata
2972 2973 2974 |
# File 'generated/google/apis/jobs_v2/classes.rb', line 2972 def initialize(**args) update!(**args) end |
Instance Attribute Details
#experiment_id_list ⇒ Array<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
2959 2960 2961 |
# File 'generated/google/apis/jobs_v2/classes.rb', line 2959 def experiment_id_list @experiment_id_list end |
#mode ⇒ String
For search response only. Indicates the mode of a performed search.
Corresponds to the JSON property mode
2964 2965 2966 |
# File 'generated/google/apis/jobs_v2/classes.rb', line 2964 def mode @mode end |
#request_id ⇒ String
A unique id associated with this call.
This id is logged for tracking purposes.
Corresponds to the JSON property requestId
2970 2971 2972 |
# File 'generated/google/apis/jobs_v2/classes.rb', line 2970 def request_id @request_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2977 2978 2979 2980 2981 |
# File 'generated/google/apis/jobs_v2/classes.rb', line 2977 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 |