Current section
Files
Jump to
Current section
Files
lib/docusign/model/app_store_receipt.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.AppStoreReceipt do
@moduledoc """
Contains information about an APP store receipt.
"""
@derive [Poison.Encoder]
defstruct [
:downgradeProductId,
:isDowngradeCancellation,
:productId,
:receiptData
]
@type t :: %__MODULE__{
:downgradeProductId => String.t() | nil,
:isDowngradeCancellation => String.t() | nil,
:productId => String.t() | nil,
:receiptData => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.AppStoreReceipt do
def decode(value, _options) do
value
end
end