# 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.PurchasedEnvelopesInformation do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:amount,
:appName,
:currencyCode,
:platform,
:productId,
:quantity,
:receiptData,
:storeName,
:transactionId
]
@type t :: %__MODULE__{
:amount => String.t(),
:appName => String.t(),
:currencyCode => String.t(),
:platform => String.t(),
:productId => String.t(),
:quantity => String.t(),
:receiptData => String.t(),
:storeName => String.t(),
:transactionId => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.PurchasedEnvelopesInformation do
def decode(value, _options) do
value
end
end