lib/ex_vcom/model/cmms_workorder_assignee.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 ExVcom.Model.CmmsWorkorderAssignee do
  @moduledoc """

  """

  @derive [Poison.Encoder]
  defstruct [
    :username,
    :status,
    :statusDateAt,
    :statusReason
  ]

  @type t :: %__MODULE__{
          :username => String.t() | nil,
          :status => String.t() | nil,
          :statusDateAt => DateTime.t() | nil,
          :statusReason => String.t() | nil
        }
end

defimpl Poison.Decoder, for: ExVcom.Model.CmmsWorkorderAssignee do
  def decode(value, _options) do
    value
  end
end