diff options
| author | Jeff Carr <[email protected]> | 2025-04-30 14:39:28 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-04-30 14:39:28 -0500 |
| commit | c862fac55f22d56e9fd8b5d48bf60ea8618c7733 (patch) | |
| tree | 143c59dc2029930d77c5cd93efb8eeed6c92ecf8 | |
| parent | 58ce73adf7e557915409bbf137541a5334c2e099 (diff) | |
minor
| -rw-r--r-- | example/signal.proto | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/example/signal.proto b/example/signal.proto index 7d3da53..7d3e89b 100644 --- a/example/signal.proto +++ b/example/signal.proto @@ -94,10 +94,8 @@ message AccountData { } message IAPSubscriberData { oneof iapSubscriptionId { - // Identifies an Android Play Store IAP subscription. - string purchaseToken = 2; - // Identifies an iOS App Store IAP subscription. - uint64 originalTransactionId = 3; + string purchaseToken = 2; // Identifies an Android Play Store IAP subscription. + uint64 originalTransactionId = 3; // Identifies an iOS App Store IAP subscription. } bytes subscriberId = 1; |
