Current section

Files

Jump to
open_xchange_client lib open_xchange_client model task_confirmation_body.ex
Raw

lib/open_xchange_client/model/task_confirmation_body.ex

# 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