We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45926d1 commit a994a8aCopy full SHA for a994a8a
src/Api/GeneratePayLinkRequest.php
@@ -2,6 +2,19 @@
2
3
namespace ProtoneMedia\LaravelPaddle\Api;
4
5
+/**
6
+ * Class GeneratePayLinkRequest
7
+ * @package ProtoneMedia\LaravelPaddle\Api
8
+ * @method productId()
9
+ * @method title()
10
+ * @method webhookUrl()
11
+ * @method prices()
12
+ * @method customMessage()
13
+ * @method quantity()
14
+ * @method recurringAffiliateLimit()
15
+ * @method customerEmail()
16
+ * @method returnUrl()
17
+ */
18
class GeneratePayLinkRequest extends Request
19
{
20
/**
src/Api/Product.php
@@ -39,6 +39,7 @@ public function generatePayLink(array $data = [])
39
'quantity' => 'min:1|max:100',
40
'recurring_affiliate_limit' => 'min:1',
41
'customer_email' => 'email',
42
+ 'return_url' => 'url',
43
]);
44
}
45
0 commit comments