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