PHP Sigfox Client

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

$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
throws
DeserializeException

If provided an invalid type to a property

Return values
static

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
inheritdoc
Return values
array<string|int, mixed>

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

Search results