Current section

Files

Jump to
docusign lib docusign model pay_pal_legacy_settings.ex
Raw

lib/docusign/model/pay_pal_legacy_settings.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.PayPalLegacySettings do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:currency,
:partner,
:password,
:userName,
:vendor
]
@type t :: %__MODULE__{
:currency => String.t() | nil,
:partner => String.t() | nil,
:password => String.t() | nil,
:userName => String.t() | nil,
:vendor => String.t() | nil
}
def decode(value) do
value
end
end