Copied!

AttributeGroupUpdateStruct

AttributeGroupUpdateStruct.php : 13
Extends ValueObject

The base class for all value objects and structs.

Supports read-only properties by marking them as protected. In this case they will only be writable using constructor, and need to be documented using @property-read <type> <$var> annotation in class doc in addition to inline property doc. Writable properties must be public and must be documented inline.

Methods

public__construct()

AttributeGroupUpdateStruct.php : 25

Construct object optionally with a set of properties.

public __construct([string|null $identifier = null ][, array<string, string> $names = [] ][, int|null $position = null ])

Parameters

Name Type Default value Description
$identifier string|null null -
$names array<string, string> [] -
$position int|null null -

publicgetIdentifier()

AttributeGroupUpdateStruct.php : 34
public getIdentifier() : string|null

Return values

string|null

publicgetNames()

AttributeGroupUpdateStruct.php : 47
public getNames() : array<string, string>

Return values

array<string, string>

publicgetPosition()

AttributeGroupUpdateStruct.php : 60
public getPosition() : int|null

Return values

int|null

publicsetIdentifier()

AttributeGroupUpdateStruct.php : 39
public setIdentifier(string|null $identifier) : void

Parameters

Name Type Default value Description
$identifier string|null - -

publicsetNames()

AttributeGroupUpdateStruct.php : 55
public setNames(array<string, string> $names) : void

Parameters

Name Type Default value Description
$names array<string, string> - -

publicsetPosition()

AttributeGroupUpdateStruct.php : 65
public setPosition(int|null $position) : void

Parameters

Name Type Default value Description
$position int|null - -

protectedgetProperties()

ValueObject.php : 54

Returns list of available properties' names.

protected getProperties([array<int, string> $dynamicProperties = [] ]) : array<int, string>

Override to add dynamic properties.

Parameters

Name Type Default value Description
$dynamicProperties array<int, string> []

Additional dynamic properties exposed on the object

Return values

array<int, string>

Tags
Serializerignore

()