commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
ProjectChangeMessagesConfigurationActionModel.php
1 <?php
2 
3 declare(strict_types=1);
10 
17 use stdClass;
18 
23 {
24  public const DISCRIMINATOR_VALUE = 'changeMessagesConfiguration';
29  protected $action;
30 
36 
37 
41  public function __construct(
43  ?string $action = null
44  ) {
45  $this->messagesConfiguration = $messagesConfiguration;
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 
73  public function getMessagesConfiguration()
74  {
75  if (is_null($this->messagesConfiguration)) {
77  $data = $this->raw(self::FIELD_MESSAGES_CONFIGURATION);
78  if (is_null($data)) {
79  return null;
80  }
81 
82  $this->messagesConfiguration = MessagesConfigurationDraftModel::of($data);
83  }
84 
86  }
87 
88 
93  {
94  $this->messagesConfiguration = $messagesConfiguration;
95  }
96 }
__construct(?MessagesConfigurationDraft $messagesConfiguration=null, ?string $action=null)