Current section

Files

Jump to
docusign lib docusign model ask_an_admin.ex
Raw

lib/docusign/model/ask_an_admin.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.AskAnAdmin do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:email,
:message,
:name,
:phone
]
@type t :: %__MODULE__{
:email => String.t() | nil,
:message => String.t() | nil,
:name => String.t() | nil,
:phone => String.t() | nil
}
def decode(value) do
value
end
end