commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
ChangeValueRelativeChangeValueModel.php
1<?php
2
3declare(strict_types=1);
10
15use stdClass;
16
21{
22
23 public const DISCRIMINATOR_VALUE = 'relative';
28 protected $type;
29
34 protected $permyriad;
35
36
40 public function __construct(
41 ?int $permyriad = null,
42 ?string $type = null
43 ) {
44 $this->permyriad = $permyriad;
45 $this->type = $type ?? self::DISCRIMINATOR_VALUE;
46 }
47
52 public function getType()
53 {
54 if (is_null($this->type)) {
56 $data = $this->raw(self::FIELD_TYPE);
57 if (is_null($data)) {
58 return null;
59 }
60 $this->type = (string) $data;
61 }
62
63 return $this->type;
64 }
65
72 public function getPermyriad()
73 {
74 if (is_null($this->permyriad)) {
76 $data = $this->raw(self::FIELD_PERMYRIAD);
77 if (is_null($data)) {
78 return null;
79 }
80 $this->permyriad = (int) $data;
81 }
82
83 return $this->permyriad;
84 }
85
86
90 public function setPermyriad(?int $permyriad): void
91 {
92 $this->permyriad = $permyriad;
93 }
94
95
96
97}