1 | <?php |
||
5 | class Product |
||
6 | { |
||
7 | use HandlesCoupons; |
||
8 | |||
9 | /** |
||
10 | * https://developer.paddle.com/api-reference/product-api/products/getproducts |
||
11 | */ |
||
12 | public function listProducts(array $data = []) |
||
16 | |||
17 | /** |
||
18 | * https://developer.paddle.com/api-reference/product-api/licenses/createlicense |
||
19 | */ |
||
20 | public function generateLicense(array $data = []) |
||
27 | |||
28 | /** |
||
29 | * https://developer.paddle.com/api-reference/product-api/pay-links/createpaylink |
||
30 | */ |
||
31 | public function generatePayLink(array $data = []) |
||
45 | |||
46 | /** |
||
47 | * https://developer.paddle.com/api-reference/product-api/transactions/listtransactions |
||
48 | */ |
||
49 | public function listTransactions($entity, $id, array $data = []) |
||
53 | } |
||
54 |