commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
OrderEditPreviewSuccessModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
16 use stdClass;
17 
22 {
23  public const DISCRIMINATOR_VALUE = 'PreviewSuccess';
28  protected $type;
29 
34  protected $preview;
35 
40  protected $messagePayloads;
41 
42 
46  public function __construct(
47  ?StagedOrder $preview = null,
49  ?string $type = null
50  ) {
51  $this->preview = $preview;
52  $this->messagePayloads = $messagePayloads;
53  $this->type = $type ?? self::DISCRIMINATOR_VALUE;
54  }
55 
60  public function getType()
61  {
62  if (is_null($this->type)) {
64  $data = $this->raw(self::FIELD_TYPE);
65  if (is_null($data)) {
66  return null;
67  }
68  $this->type = (string) $data;
69  }
70 
71  return $this->type;
72  }
73 
80  public function getPreview()
81  {
82  if (is_null($this->preview)) {
84  $data = $this->raw(self::FIELD_PREVIEW);
85  if (is_null($data)) {
86  return null;
87  }
88 
89  $this->preview = StagedOrderModel::of($data);
90  }
91 
92  return $this->preview;
93  }
94 
101  public function getMessagePayloads()
102  {
103  if (is_null($this->messagePayloads)) {
105  $data = $this->raw(self::FIELD_MESSAGE_PAYLOADS);
106  if (is_null($data)) {
107  return null;
108  }
109  $this->messagePayloads = MessagePayloadCollection::fromArray($data);
110  }
111 
112  return $this->messagePayloads;
113  }
114 
115 
119  public function setPreview(?StagedOrder $preview): void
120  {
121  $this->preview = $preview;
122  }
123 
128  {
129  $this->messagePayloads = $messagePayloads;
130  }
131 }
__construct(?StagedOrder $preview=null, ?MessagePayloadCollection $messagePayloads=null, ?string $type=null)