Current section

Files

Jump to
docusign lib docusign model account_password_questions_required.ex
Raw

lib/docusign/model/account_password_questions_required.ex

# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.AccountPasswordQuestionsRequired do
@moduledoc """
Information about the number of password questions required (0 to 4) to confirm a user's identity when a user needs to reset their password.
"""
@derive Jason.Encoder
defstruct [
:maximumQuestions,
:minimumQuestions
]
@type t :: %__MODULE__{
:maximumQuestions => String.t() | nil,
:minimumQuestions => String.t() | nil
}
def decode(value) do
value
end
end