TimeInterval🔗
Definition🔗
class TimeInterval implements \JsonSerializable
{
/**
* @var array<\Grafana\Foundation\Alerting\TimeRange>|null
*/
public ?array $times;
/**
* @var array<\Grafana\Foundation\Alerting\WeekdayRange>|null
*/
public ?array $weekdays;
/**
* @var array<\Grafana\Foundation\Alerting\DayOfMonthRange>|null
*/
public ?array $daysOfMonth;
/**
* @var array<\Grafana\Foundation\Alerting\MonthRange>|null
*/
public ?array $months;
/**
* @var array<\Grafana\Foundation\Alerting\YearRange>|null
*/
public ?array $years;
public string $location;
}
Methods🔗
fromArray🔗
Builds this object from an array.
This function is meant to be used with the return value of json_decode($json, true)
.
jsonSerialize🔗
Returns the data representing this object, preparing it for JSON serialization with json_encode()
.