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