-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f4c6d8
commit c1089b5
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
16 changes: 16 additions & 0 deletions
16
funsol-billing-utils/src/main/java/com/funsol/iap/billing/model/FunsolPurchase.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.funsol.iap.billing.model | ||
|
||
data class FunsolPurchase(val products: MutableList<String>, | ||
val purchaseState: Int, | ||
val purchaseToken: String, | ||
val isAcknowledged: Boolean, | ||
val packageName: String, | ||
val developerPayload: String, | ||
val isAutoRenewing: Boolean, | ||
val orderId: String?, | ||
val originalJson: String, | ||
val purchaseTime: Long, | ||
val quantity: Int, | ||
val signature: String, | ||
val skus: ArrayList<String> | ||
) |