| 1: | <?php |
| 2: | /* |
| 3: | * This class was auto-generated from the API references found at |
| 4: | * https://apireference.connect.worldline-solutions.com/ |
| 5: | */ |
| 6: | namespace Worldline\Connect\Sdk\V1\Merchant\Payments; |
| 7: | |
| 8: | use Worldline\Connect\Sdk\Communication\RequestObject; |
| 9: | |
| 10: | /** |
| 11: | * Query parameters for Find payments |
| 12: | * |
| 13: | * @package Worldline\Connect\Sdk\V1\Merchant\Payments |
| 14: | * @link https://apireference.connect.worldline-solutions.com/s2sapi/v1/en_US/php/payments/find.html Find payments |
| 15: | */ |
| 16: | class FindPaymentsParams extends RequestObject |
| 17: | { |
| 18: | /** |
| 19: | * @var string |
| 20: | */ |
| 21: | public $hostedCheckoutId; |
| 22: | |
| 23: | /** |
| 24: | * @var string |
| 25: | */ |
| 26: | public $merchantReference; |
| 27: | |
| 28: | /** |
| 29: | * @var int |
| 30: | */ |
| 31: | public $merchantOrderId; |
| 32: | |
| 33: | /** |
| 34: | * @var int |
| 35: | */ |
| 36: | public $offset; |
| 37: | |
| 38: | /** |
| 39: | * @var int |
| 40: | */ |
| 41: | public $limit; |
| 42: | } |
| 43: |