Current section

Files

Jump to
open_xchange_client lib open_xchange_client model resource_search_body.ex
Raw

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