Current section

Files

Jump to
docusign lib docusign model payment_signer_values.ex
Raw

lib/docusign/model/payment_signer_values.ex

# NOTE: This file is auto generated by OpenAPI Generator 6.4.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.PaymentSignerValues do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:paymentOption
]
@type t :: %__MODULE__{
:paymentOption => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.PaymentSignerValues do
def decode(value, _options) do
value
end
end