commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
AttributionBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class AttributionBuilder implements Builder
22 {
27  private $clientId;
28 
33  private $source;
34 
41  public function getClientId()
42  {
43  return $this->clientId;
44  }
45 
52  public function getSource()
53  {
54  return $this->source;
55  }
56 
61  public function withClientId(?string $clientId)
62  {
63  $this->clientId = $clientId;
64 
65  return $this;
66  }
67 
72  public function withSource(?string $source)
73  {
74  $this->source = $source;
75 
76  return $this;
77  }
78 
79 
80  public function build(): Attribution
81  {
82  return new AttributionModel(
83  $this->clientId,
84  $this->source
85  );
86  }
87 
88  public static function of(): AttributionBuilder
89  {
90  return new self();
91  }
92 }