commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ProductSearchProjectionParams.php
1<?php
2
3declare(strict_types=1);
10
13
15{
16 public const FIELD_EXPAND = 'expand';
17 public const FIELD_STAGED = 'staged';
18 public const FIELD_PRICE_CURRENCY = 'priceCurrency';
19 public const FIELD_PRICE_COUNTRY = 'priceCountry';
20 public const FIELD_PRICE_CUSTOMER_GROUP = 'priceCustomerGroup';
21 public const FIELD_PRICE_CHANNEL = 'priceChannel';
22 public const FIELD_LOCALE_PROJECTION = 'localeProjection';
23 public const FIELD_STORE_PROJECTION = 'storeProjection';
24
32 public function getExpand();
33
40 public function getStaged();
41
48 public function getPriceCurrency();
49
56 public function getPriceCountry();
57
64 public function getPriceCustomerGroup();
65
72 public function getPriceChannel();
73
80 public function getLocaleProjection();
81
92 public function getStoreProjection();
93
97 public function setExpand(?array $expand): void;
98
102 public function setStaged(?bool $staged): void;
103
107 public function setPriceCurrency(?string $priceCurrency): void;
108
112 public function setPriceCountry(?string $priceCountry): void;
113
117 public function setPriceCustomerGroup(?string $priceCustomerGroup): void;
118
122 public function setPriceChannel(?string $priceChannel): void;
123
127 public function setLocaleProjection(?array $localeProjection): void;
128
132 public function setStoreProjection(?string $storeProjection): void;
133}