Packages

Cloud Talent Solution API client library. Cloud Talent Solution provides the capability to create, read, update, and delete job postings, as well as search jobs based on keywords and filters.

Current section

Files

Jump to
google_api_jobs lib google_api jobs v2 model response_metadata.ex
Raw

lib/google_api/jobs/v2/model/response_metadata.ex

# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# NOTE: This file is auto generated by the elixir code generator program.
# Do not edit this file manually.
defmodule GoogleApi.Jobs.V2.Model.ResponseMetadata do
@moduledoc """
Output only.
Additional information returned to client, such as debugging
information.
## Attributes
* `experimentIdList` (*type:* `list(integer())`, *default:* `nil`) - 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.
* `mode` (*type:* `String.t`, *default:* `nil`) - For search response only. Indicates the mode of a performed search.
* `requestId` (*type:* `String.t`, *default:* `nil`) - A unique id associated with this call.
This id is logged for tracking purposes.
"""
use GoogleApi.Gax.ModelBase
@type t :: %__MODULE__{
:experimentIdList => list(integer()),
:mode => String.t(),
:requestId => String.t()
}
field(:experimentIdList, type: :list)
field(:mode)
field(:requestId)
end
defimpl Poison.Decoder, for: GoogleApi.Jobs.V2.Model.ResponseMetadata do
def decode(value, options) do
GoogleApi.Jobs.V2.Model.ResponseMetadata.decode(value, options)
end
end
defimpl Poison.Encoder, for: GoogleApi.Jobs.V2.Model.ResponseMetadata do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end