commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
ResourceByProjectKeyShoppingLists.php
1 <?php
2 
3 declare(strict_types=1);
10 
13 use GuzzleHttp\ClientInterface;
14 use Psr\Http\Message\UploadedFileInterface;
15 
20 {
24  public function __construct(array $args = [], ClientInterface $client = null)
25  {
26  parent::__construct('/{projectKey}/shopping-lists', $args, $client);
27  }
28 
31  public function withKey(string $key = null): ResourceByProjectKeyShoppingListsKeyByKey
32  {
33  $args = $this->getArgs();
34  if (!is_null($key)) {
35  $args['key'] = $key;
36  }
37 
38  return new ResourceByProjectKeyShoppingListsKeyByKey($args, $this->getClient());
39  }
42  public function withId(string $ID = null): ResourceByProjectKeyShoppingListsByID
43  {
44  $args = $this->getArgs();
45  if (!is_null($ID)) {
46  $args['ID'] = $ID;
47  }
48 
49  return new ResourceByProjectKeyShoppingListsByID($args, $this->getClient());
50  }
51 
56  public function get($body = null, array $headers = []): ByProjectKeyShoppingListsGet
57  {
58  $args = $this->getArgs();
59 
60  return new ByProjectKeyShoppingListsGet($args['projectKey'], $body, $headers, $this->getClient());
61  }
66  public function head($body = null, array $headers = []): ByProjectKeyShoppingListsHead
67  {
68  $args = $this->getArgs();
69 
70  return new ByProjectKeyShoppingListsHead($args['projectKey'], $body, $headers, $this->getClient());
71  }
76  public function post(?ShoppingListDraft $body = null, array $headers = []): ByProjectKeyShoppingListsPost
77  {
78  $args = $this->getArgs();
79 
80  return new ByProjectKeyShoppingListsPost($args['projectKey'], $body, $headers, $this->getClient());
81  }
82 }