Current section
Files
Jump to
Current section
Files
lib/foyer_api/model/update_notify_request.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 FoyerAPI.Model.UpdateNotifyRequest do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:notify
]
@type t :: %__MODULE__{
:notify => String.t | nil
}
end
defimpl Poison.Decoder, for: FoyerAPI.Model.UpdateNotifyRequest do
def decode(value, _options) do
value
end
end