Current section

Files

Jump to
docusign lib docusign model new_account_summary.ex
Raw

lib/docusign/model/new_account_summary.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.NewAccountSummary do
@moduledoc """
"""
alias DocuSign.Deserializer
alias DocuSign.Model.BillingPlanPreview
@derive Jason.Encoder
defstruct [
:accountId,
:accountIdGuid,
:accountName,
:apiPassword,
:baseUrl,
:billingPlanPreview,
:userId
]
@type t :: %__MODULE__{
:accountId => String.t() | nil,
:accountIdGuid => String.t() | nil,
:accountName => String.t() | nil,
:apiPassword => String.t() | nil,
:baseUrl => String.t() | nil,
:billingPlanPreview => BillingPlanPreview.t() | nil,
:userId => String.t() | nil
}
def decode(value) do
value
|> Deserializer.deserialize(:billingPlanPreview, :struct, BillingPlanPreview)
end
end