lib/mail_slurp_api/model/inline_object.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 MailSlurpAPI.Model.InlineObject do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:"contentTypeHeader",
:"file"
]
@type t :: %__MODULE__{
:"contentTypeHeader" => String.t | nil,
:"file" => String.t
}
end
defimpl Poison.Decoder, for: MailSlurpAPI.Model.InlineObject do
def decode(value, _options) do
value
end
end