| 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\Productgroups; |
| 7: | |
| 8: | use Worldline\Connect\Sdk\Communication\RequestObject; |
| 9: | |
| 10: | /** |
| 11: | * Query parameters for Get payment product groups |
| 12: | * |
| 13: | * @package Worldline\Connect\Sdk\V1\Merchant\Productgroups |
| 14: | * @link https://apireference.connect.worldline-solutions.com/s2sapi/v1/en_US/php/productgroups/find.html Get payment product groups |
| 15: | */ |
| 16: | class FindProductgroupsParams extends RequestObject |
| 17: | { |
| 18: | /** |
| 19: | * @var string|null |
| 20: | */ |
| 21: | public ?string $countryCode; |
| 22: | |
| 23: | /** |
| 24: | * @var string|null |
| 25: | */ |
| 26: | public ?string $currencyCode; |
| 27: | |
| 28: | /** |
| 29: | * @var string|null |
| 30: | */ |
| 31: | public ?string $locale; |
| 32: | |
| 33: | /** |
| 34: | * @var int|null |
| 35: | */ |
| 36: | public ?int $amount; |
| 37: | |
| 38: | /** |
| 39: | * @var bool|null |
| 40: | */ |
| 41: | public ?bool $isRecurring; |
| 42: | |
| 43: | /** |
| 44: | * @var bool|null |
| 45: | */ |
| 46: | public ?bool $isInstallments; |
| 47: | |
| 48: | /** |
| 49: | * @var string[]|null |
| 50: | */ |
| 51: | public ?array $hide; |
| 52: | } |
| 53: |