Current section
Files
Jump to
Current section
Files
lib/docusign/model/payment_processor_information.ex
# NOTE: This file is auto generated by OpenAPI Generator 6.2.1 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.PaymentProcessorInformation do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:address,
:billingAgreementId,
:email
]
@type t :: %__MODULE__{
:address => DocuSign.Model.AddressInformation.t() | nil,
:billingAgreementId => String.t() | nil,
:email => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.PaymentProcessorInformation do
import DocuSign.Deserializer
def decode(value, options) do
value
|> deserialize(:address, :struct, DocuSign.Model.AddressInformation, options)
end
end