# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule DocuSign.Model.ProvisioningInformation do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:defaultConnectionId,
:defaultPlanId,
:distributorCode,
:distributorPassword,
:passwordRuleText,
:planPromotionText,
:purchaseOrderOrPromAllowed
]
@type t :: %__MODULE__{
:defaultConnectionId => String.t(),
:defaultPlanId => String.t(),
:distributorCode => String.t(),
:distributorPassword => String.t(),
:passwordRuleText => String.t(),
:planPromotionText => String.t(),
:purchaseOrderOrPromAllowed => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.ProvisioningInformation do
def decode(value, _options) do
value
end
end