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