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