Current section
Files
Jump to
Current section
Files
lib/open_xchange_client/model/task_confirmation.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.TaskConfirmation do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:type,
:mail,
:display_name,
:status,
:message
]
@type t :: %__MODULE__{
:type => integer() | nil,
:mail => String.t() | nil,
:display_name => String.t() | nil,
:status => integer() | nil,
:message => String.t() | nil
}
end
defimpl Poison.Decoder, for: OpenXchangeClient.Model.TaskConfirmation do
def decode(value, _options) do
value
end
end