Current section

Files

Jump to
docusign lib docusign model currency_plan_price.ex
Raw

lib/docusign/model/currency_plan_price.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.CurrencyPlanPrice do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:currencyCode,
:currencySymbol,
:perSeatPrice,
:supportedCardTypes,
:supportIncidentFee,
:supportPlanFee
]
@type t :: %__MODULE__{
:currencyCode => String.t() | nil,
:currencySymbol => String.t() | nil,
:perSeatPrice => String.t() | nil,
:supportedCardTypes => DocuSign.Model.CreditCardTypes.t() | nil,
:supportIncidentFee => String.t() | nil,
:supportPlanFee => String.t() | nil
}
alias DocuSign.Deserializer
def decode(value) do
value
|> Deserializer.deserialize(:supportedCardTypes, :struct, DocuSign.Model.CreditCardTypes)
end
end