Function __global->sync_aggregate_type_instance
Definitions
sources/aggregate_types.php
- Sync an aggregate type instance.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $id | AUTO_LINK | No | No | required parameter | N/A | N/A | The ID |
| $aggregate_label | ?SHORT_TEXT | No | No | Null | N/A | N/A | Label for instance (null: lookup) |
| $old_aggregate_label | ?SHORT_TEXT | No | No | Null | N/A | N/A | Old label for instance (null: lookup) |
| $aggregate_type | ?ID_TEXT | No | No | Null | N/A | N/A | What the instance is of (null: lookup) |
| $other_parameters | ?array | No | No | Null | N/A | N/A | Additional parameters (null: lookup) |
| $old_parameters | ?array | No | No | Null | N/A | N/A | Old additional parameters (null: lookup) |
Preview
Code (PHP)
/**
* Sync an aggregate type instance.
*
* @param AUTO_LINK $id The ID
* @param ?SHORT_TEXT $aggregate_label Label for instance (null: lookup)
* @param ?SHORT_TEXT $old_aggregate_label Old label for instance (null: lookup)
* @param ?ID_TEXT $aggregate_type What the instance is of (null: lookup)
* @param ?array $other_parameters Additional parameters (null: lookup)
* @param ?array $old_parameters Old additional parameters (null: lookup)
*/
function sync_aggregate_type_instance(int $id, ?string $aggregate_label = null, ?string $old_aggregate_label = null, ?string $aggregate_type = null, ?array $other_parameters = null, ?array $old_parameters = null)
* Sync an aggregate type instance.
*
* @param AUTO_LINK $id The ID
* @param ?SHORT_TEXT $aggregate_label Label for instance (null: lookup)
* @param ?SHORT_TEXT $old_aggregate_label Old label for instance (null: lookup)
* @param ?ID_TEXT $aggregate_type What the instance is of (null: lookup)
* @param ?array $other_parameters Additional parameters (null: lookup)
* @param ?array $old_parameters Old additional parameters (null: lookup)
*/
function sync_aggregate_type_instance(int $id, ?string $aggregate_label = null, ?string $old_aggregate_label = null, ?string $aggregate_type = null, ?array $other_parameters = null, ?array $old_parameters = null)

