commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ZoneChangeNameActionModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
22 public const DISCRIMINATOR_VALUE = 'changeName';
27 protected $action;
28
33 protected $name;
34
35
39 public function __construct(
40 ?string $name = null,
41 ?string $action = null
42 ) {
43 $this->name = $name;
44 $this->action = $action ?? self::DISCRIMINATOR_VALUE;
45 }
46
51 public function getAction()
52 {
53 if (is_null($this->action)) {
55 $data = $this->raw(self::FIELD_ACTION);
56 if (is_null($data)) {
57 return null;
58 }
59 $this->action = (string) $data;
60 }
61
62 return $this->action;
63 }
64
71 public function getName()
72 {
73 if (is_null($this->name)) {
75 $data = $this->raw(self::FIELD_NAME);
76 if (is_null($data)) {
77 return null;
78 }
79 $this->name = (string) $data;
80 }
81
82 return $this->name;
83 }
84
85
89 public function setName(?string $name): void
90 {
91 $this->name = $name;
92 }
93}