Skip to content

Latest commit

 

History

History
61 lines (45 loc) · 610 Bytes

File metadata and controls

61 lines (45 loc) · 610 Bytes

CustomFieldsValue

The value associated with the custom field.

Supported Types

string

/**
* @var string
*/
string $value = /* values here */

float

/**
* @var float
*/
float $value = /* values here */

bool

/**
* @var bool
*/
bool $value = /* values here */

Components\Value4

/**
* @var Components\Value4
*/
Components\Value4 $value = /* values here */

array

/**
* @var array<mixed>
*/
array $value = /* values here */

\DateTime

/**
* @var \DateTime
*/
\DateTime $value = /* values here */