# 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.EmailContentMatchResult do @moduledoc """ Matches for the given pattern """ @derive [Poison.Encoder] defstruct [ :"matches", :"pattern" ] @type t :: %__MODULE__{ :"matches" => [String.t], :"pattern" => String.t } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.EmailContentMatchResult do def decode(value, _options) do value end end