Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 539 Bytes

File metadata and controls

52 lines (38 loc) · 539 Bytes

Data

The response data from the provider. Can be an object, array, or primitive value.

Supported Types

array

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

array

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

string

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

float

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

bool

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