Current section
Files
Jump to
Current section
Files
lib/docusign/model/payment_gateway_accounts_info.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.PaymentGatewayAccountsInfo do
@moduledoc """
Holds information about connected payment accounts.
"""
@derive Jason.Encoder
defstruct [
:paymentGatewayAccounts
]
@type t :: %__MODULE__{
:paymentGatewayAccounts => [DocuSign.Model.PaymentGatewayAccount.t()] | nil
}
alias DocuSign.Deserializer
def decode(value) do
value
|> Deserializer.deserialize(
:paymentGatewayAccounts,
:list,
DocuSign.Model.PaymentGatewayAccount
)
end
end