コード例 #1
0
 public VerifySubscriptionPurchaseResult(ErrorResult error = default)
 {
     Successful     = false;
     Error          = error;
     PurchaseResult = default;
 }
コード例 #2
0
 public VerifySubscriptionPurchaseResult(SubscriptionPurchaseResult result)
 {
     Successful     = true;
     Error          = default;
     PurchaseResult = result;
 }