# 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.CreateInboxRulesetOptions do @moduledoc """ Options for creating inbox rulesets. Inbox rulesets can be used to block, allow, filter, or forward emails when sending or receiving using the inbox. """ @derive [Poison.Encoder] defstruct [ :"action", :"scope", :"target" ] @type t :: %__MODULE__{ :"action" => String.t | nil, :"scope" => String.t | nil, :"target" => String.t | nil } end defimpl Poison.Decoder, for: MailSlurpAPI.Model.CreateInboxRulesetOptions do def decode(value, _options) do value end end