Current section

Files

Jump to
docusign lib docusign model feature_set.ex
Raw

lib/docusign/model/feature_set.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.FeatureSet do
@moduledoc """
This object provides details about a feature set, or add-on product that is associated with an account. It is reserved for Docusign internal use only.
"""
alias DocuSign.Deserializer
alias DocuSign.Model.CurrencyFeatureSetPrice
@derive Jason.Encoder
defstruct [
:currencyFeatureSetPrices,
:envelopeFee,
:featureSetId,
:fixedFee,
:is21CFRPart11,
:isActive,
:isEnabled,
:name,
:seatFee
]
@type t :: %__MODULE__{
:currencyFeatureSetPrices => [CurrencyFeatureSetPrice.t()] | nil,
:envelopeFee => String.t() | nil,
:featureSetId => String.t() | nil,
:fixedFee => String.t() | nil,
:is21CFRPart11 => String.t() | nil,
:isActive => String.t() | nil,
:isEnabled => String.t() | nil,
:name => String.t() | nil,
:seatFee => String.t() | nil
}
def decode(value) do
value
|> Deserializer.deserialize(
:currencyFeatureSetPrices,
:list,
CurrencyFeatureSetPrice
)
end
end