The base class for all value objects and structs.
Supports readonly properties by marking them as protected.
In this case they will only be writable using constructor, and need to be documented
using property-read
Methods¶
__construct() ¶
CheckoutUpdateStruct.php
:
23
Construct object optionally with a set of properties.
|
|
Parameters
Name | Type | Default value | Description |
---|---|---|---|
$transition | string|null | null | - |
$data | mixed|null | null | - |
getData() ¶
CheckoutUpdateStruct.php
:
43
|
|
Return values
mixed|null
getTransition() ¶
CheckoutUpdateStruct.php
:
30
|
|
Return values
string|null
setData() ¶
CheckoutUpdateStruct.php
:
51
|
|
Parameters
Name | Type | Default value | Description |
---|---|---|---|
$data | mixed|null | - | - |
setTransition() ¶
CheckoutUpdateStruct.php
:
35
|
|
Parameters
Name | Type | Default value | Description |
---|---|---|---|
$transition | string|null | null | - |
getProperties() ¶
ValueObject.php
:
50
Function where list of properties are returned.
|
|
Used by attributes(), override to add dynamic properties
Parameters
Name | Type | Default value | Description |
---|---|---|---|
$dynamicProperties | array<string|int, mixed> | [] |
Additional dynamic properties exposed on the object |
Return values
array<string|int, mixed>