Skip to content

Commit

Permalink
Set all UserAppSubscriptionOrder fields as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
mhuta committed Dec 6, 2022
1 parent 829fe72 commit 2ba2f73
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ enum class NotificationType {


data class UserAppSubscriptionOrder (
val orderId: String,
val transactionId: String,
val status: String
val orderId: String?,
val transactionId: String?,
val status: String?
)

data class UserAppSubscriptionStatus(
Expand Down

0 comments on commit 2ba2f73

Please sign in to comment.