commercetools-sdk-php-v2  master
The platform, import-api and ml-api PHP sdks generated from our api reference.
UnresolvedReferencesBuilder.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
21 final class UnresolvedReferencesBuilder implements Builder
22 {
27  private $key;
28 
33  private $typeId;
34 
39  public function getKey()
40  {
41  return $this->key;
42  }
43 
50  public function getTypeId()
51  {
52  return $this->typeId;
53  }
54 
59  public function withKey(?string $key)
60  {
61  $this->key = $key;
62 
63  return $this;
64  }
65 
70  public function withTypeId(?string $typeId)
71  {
72  $this->typeId = $typeId;
73 
74  return $this;
75  }
76 
77 
78  public function build(): UnresolvedReferences
79  {
80  return new UnresolvedReferencesModel(
81  $this->key,
82  $this->typeId
83  );
84  }
85 
86  public static function of(): UnresolvedReferencesBuilder
87  {
88  return new self();
89  }
90 }