lib/google_api/chat/v1/model/action_status.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.Chat.V1.Model.ActionStatus do
  @moduledoc """
  ActionStatus represents status of a request from the bot developer's side. In specific, for each request a bot gets, the bot developer will set both fields below in relation to what the response status and message related to status should be.

  ## Attributes

  *   `statusCode` (*type:* `String.t`, *default:* `nil`) - The status code.
  *   `userFacingMessage` (*type:* `String.t`, *default:* `nil`) - This message will be the corresponding string to the above status_code. If unset, an appropriate generic message based on the status_code will be shown to the user. If this field is set then the message will be surfaced to the user for both successes and errors.
  """

  use GoogleApi.Gax.ModelBase

  @type t :: %__MODULE__{
          :statusCode => String.t() | nil,
          :userFacingMessage => String.t() | nil
        }

  field(:statusCode)
  field(:userFacingMessage)
end

defimpl Poison.Decoder, for: GoogleApi.Chat.V1.Model.ActionStatus do
  def decode(value, options) do
    GoogleApi.Chat.V1.Model.ActionStatus.decode(value, options)
  end
end

defimpl Poison.Encoder, for: GoogleApi.Chat.V1.Model.ActionStatus do
  def encode(value, options) do
    GoogleApi.Gax.ModelBase.encode(value, options)
  end
end