value pairs. * @method array getValues() Get field values. * @method $this setReload(bool $reload) Specify whether complete objects will be returned after saving. * @method bool getReload() * * @package Civi\Api4\Generic */ abstract class AbstractUpdateAction extends AbstractBatchAction { /** * Field values to update. * * @var array * @required */ protected $values = []; /** * Reload $ENTITIES after saving. * * Setting to `true` will load complete records and return them as the api result. * If `false` the api usually returns only the fields specified to be updated. * * @var bool */ protected $reload = FALSE; /** * @param string $fieldName * * @return mixed|null */ public function getValue(string $fieldName) { return $this->values[$fieldName] ?? NULL; } /** * Add an item to the values array. * * @param string $fieldName * @param mixed $value * @return $this */ public function addValue(string $fieldName, $value) { $this->values[$fieldName] = $value; return $this; } }