commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
StateSetNameActionModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
17 use stdClass;
18 
23 {
24  public const DISCRIMINATOR_VALUE = 'setName';
29  protected $action;
30 
35  protected $name;
36 
37 
41  public function __construct(
42  ?LocalizedString $name = null,
43  ?string $action = null
44  ) {
45  $this->name = $name;
46  $this->action = $action ?? self::DISCRIMINATOR_VALUE;
47  }
48 
53  public function getAction()
54  {
55  if (is_null($this->action)) {
57  $data = $this->raw(self::FIELD_ACTION);
58  if (is_null($data)) {
59  return null;
60  }
61  $this->action = (string) $data;
62  }
63 
64  return $this->action;
65  }
66 
74  public function getName()
75  {
76  if (is_null($this->name)) {
78  $data = $this->raw(self::FIELD_NAME);
79  if (is_null($data)) {
80  return null;
81  }
82 
83  $this->name = LocalizedStringModel::of($data);
84  }
85 
86  return $this->name;
87  }
88 
89 
93  public function setName(?LocalizedString $name): void
94  {
95  $this->name = $name;
96  }
97 }
__construct(?LocalizedString $name=null, ?string $action=null)
static of($data=null)
Definition: MapperMap.php:45