Current section

Files

Jump to
docusign lib docusign model payment_gateway_account_setting.ex
Raw

lib/docusign/model/payment_gateway_account_setting.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.PaymentGatewayAccountSetting do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:apiFields,
:authorizationCode,
:credentialStatus,
:merchantId
]
@type t :: %__MODULE__{
:apiFields => String.t() | nil,
:authorizationCode => String.t() | nil,
:credentialStatus => String.t() | nil,
:merchantId => String.t() | nil
}
def decode(value) do
value
end
end