Current section

Files

Jump to
docusign lib docusign model payment_line_item.ex
Raw

lib/docusign/model/payment_line_item.ex

# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule DocuSign.Model.PaymentLineItem do
@moduledoc """
A line item describes details about an individual line item in a payment request.
"""
@derive [Poison.Encoder]
defstruct [
:amountReference,
:description,
:itemCode,
:name
]
@type t :: %__MODULE__{
:amountReference => String.t(),
:description => String.t(),
:itemCode => String.t(),
:name => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.PaymentLineItem do
def decode(value, _options) do
value
end
end