# 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.ImapFlagOperationOptions do @moduledoc """ IMAP operation flags """ @derive [Poison.Encoder] defstruct [ :"flagOperation", :"flags" ] @type t :: %__MODULE__{ :"flagOperation" => String.t, :"flags" => [String.t] } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.ImapFlagOperationOptions do def decode(value, _options) do value end end