commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
AttributionModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
15 use stdClass;
16 
20 final class AttributionModel extends JsonObjectModel implements Attribution
21 {
26  protected $clientId;
27 
32  protected $source;
33 
34 
38  public function __construct(
39  ?string $clientId = null,
40  ?string $source = null
41  ) {
42  $this->clientId = $clientId;
43  $this->source = $source;
44  }
45 
52  public function getClientId()
53  {
54  if (is_null($this->clientId)) {
56  $data = $this->raw(self::FIELD_CLIENT_ID);
57  if (is_null($data)) {
58  return null;
59  }
60  $this->clientId = (string) $data;
61  }
62 
63  return $this->clientId;
64  }
65 
72  public function getSource()
73  {
74  if (is_null($this->source)) {
76  $data = $this->raw(self::FIELD_SOURCE);
77  if (is_null($data)) {
78  return null;
79  }
80  $this->source = (string) $data;
81  }
82 
83  return $this->source;
84  }
85 
86 
90  public function setClientId(?string $clientId): void
91  {
92  $this->clientId = $clientId;
93  }
94 
98  public function setSource(?string $source): void
99  {
100  $this->source = $source;
101  }
102 }
__construct(?string $clientId=null, ?string $source=null)