Current section
Files
Jump to
Current section
Files
lib/xberg/detect_response.ex
# This file is auto-generated by alef — DO NOT EDIT.
# alef:hash:926a121ce8858da89e1c2dae78836bd02775ed955b144da6ce043a83737b8c26
# To regenerate: alef generate
# To verify freshness: alef verify --exit-code
defmodule Xberg.DetectResponse do
@moduledoc "MIME type detection response."
@typedoc "MIME type detection response."
@type t :: %__MODULE__{
mime_type: String.t() | nil,
filename: String.t() | nil
}
defstruct mime_type: nil,
filename: nil
end