DownlinkAnswerStatus extends Model
Table of Contents
- $baseStation : MinBaseStationWithType|null
- base station to send downlink message
- $country : string|null
- country of the operator
- $data : string|null
- response content, hex encoded
- $operator : string|null
- name of the first operator which received the message as roaming
- $plannedPower : float|null
- planned downlink power as it was computed by the backend
- from() : static
- Initializing a model from an array
- getBaseStation() : MinBaseStationWithType
- Getter for baseStation
- getCountry() : string
- Getter for country
- getData() : string
- Getter for data
- getOperator() : string
- Getter for operator
- getPlannedPower() : float
- Getter for plannedPower
- jsonSerialize() : array<string|int, mixed>
- setBaseStation() : static
- Setter for baseStation
- setCountry() : static
- Setter for country
- setData() : static
- Setter for data
- setOperator() : static
- Setter for operator
- setPlannedPower() : static
- Setter for plannedPower
Properties
$baseStation
base station to send downlink message
protected
MinBaseStationWithType|null
$baseStation
= null
$country
country of the operator
protected
string|null
$country
= null
$data
response content, hex encoded
protected
string|null
$data
= null
$operator
name of the first operator which received the message as roaming
protected
string|null
$operator
= null
$plannedPower
planned downlink power as it was computed by the backend
protected
float|null
$plannedPower
= null
Methods
from()
Initializing a model from an array
public
static from(array<string|int, mixed> $params) : static
Parameters
- $params : array<string|int, mixed>
-
Pass this parameter if you want to initial property value from an array. See API reference for all property names and types
Tags
Return values
static —getBaseStation()
Getter for baseStation
public
getBaseStation() : MinBaseStationWithType
Return values
MinBaseStationWithType —base station to send downlink message
getCountry()
Getter for country
public
getCountry() : string
Return values
string —country of the operator
getData()
Getter for data
public
getData() : string
Return values
string —response content, hex encoded
getOperator()
Getter for operator
public
getOperator() : string
Return values
string —name of the first operator which received the message as roaming
getPlannedPower()
Getter for plannedPower
public
getPlannedPower() : float
Return values
float —planned downlink power as it was computed by the backend
jsonSerialize()
public
jsonSerialize() : array<string|int, mixed>
Tags
Return values
array<string|int, mixed> —setBaseStation()
Setter for baseStation
public
setBaseStation(MinBaseStationWithType $baseStation) : static
Parameters
- $baseStation : MinBaseStationWithType
-
base station to send downlink message
Return values
static —To use in method chains
setCountry()
Setter for country
public
setCountry(string $country) : static
Parameters
- $country : string
-
country of the operator
Return values
static —To use in method chains
setData()
Setter for data
public
setData(string $data) : static
Parameters
- $data : string
-
response content, hex encoded
Return values
static —To use in method chains
setOperator()
Setter for operator
public
setOperator(string $operator) : static
Parameters
- $operator : string
-
name of the first operator which received the message as roaming
Return values
static —To use in method chains
setPlannedPower()
Setter for plannedPower
public
setPlannedPower(float $plannedPower) : static
Parameters
- $plannedPower : float
-
planned downlink power as it was computed by the backend
Return values
static —To use in method chains