# NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). # https://openapi-generator.tech # Do not edit the class manually. defmodule OpenXchangeClient.Model.TaskConfirmationBody do @moduledoc """ """ @derive [Poison.Encoder] defstruct [ :confirmation, :confirmmessage ] @type t :: %__MODULE__{ :confirmation => integer() | nil, :confirmmessage => String.t() | nil } end defimpl Poison.Decoder, for: OpenXchangeClient.Model.TaskConfirmationBody do def decode(value, _options) do value end end