commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
ResourceByProjectKeyMessages.php
1 <?php
2 
3 declare(strict_types=1);
10 
12 use GuzzleHttp\ClientInterface;
13 use Psr\Http\Message\UploadedFileInterface;
14 
19 {
23  public function __construct(array $args = [], ClientInterface $client = null)
24  {
25  parent::__construct('/{projectKey}/messages', $args, $client);
26  }
27 
30  public function withId(string $ID = null): ResourceByProjectKeyMessagesByID
31  {
32  $args = $this->getArgs();
33  if (!is_null($ID)) {
34  $args['ID'] = $ID;
35  }
36 
37  return new ResourceByProjectKeyMessagesByID($args, $this->getClient());
38  }
39 
44  public function get($body = null, array $headers = []): ByProjectKeyMessagesGet
45  {
46  $args = $this->getArgs();
47 
48  return new ByProjectKeyMessagesGet($args['projectKey'], $body, $headers, $this->getClient());
49  }
54  public function head($body = null, array $headers = []): ByProjectKeyMessagesHead
55  {
56  $args = $this->getArgs();
57 
58  return new ByProjectKeyMessagesHead($args['projectKey'], $body, $headers, $this->getClient());
59  }
60 }