Mobile
getState([, propertyNames])
Declaration
hmkit.commands.Mobile.getState()
Parameters
propertyNames | (optional) Array of names of the properties you want returned. |
Returns
MobileResponse
Example
hmkit.telematics.sendCommand(
hmkit.commands.Mobile.getState(),
accessCertificate
);
MobileResponse
Parameters
connection | (Object) |
data.value | (String) (enum) |
timestamp | (Date) |
Example
{
"connection": {
"timestamp": "2021-06-01T15:48:04.887Z",
"data": {
"value": "connected"
}
}
}
getAvailability([, propertyNames])
Declaration
hmkit.commands.Mobile.getAvailability()
Parameters
propertyNames | (optional) Array of names of the properties you want returned. |
Example
// Get availability for all properties
hmkit.telematics.sendCommand(
hmkit.commands.Mobile.getAvailability(),
accessCertificate
);
// Get availability for specific properties
hmkit.telematics.sendCommand(
hmkit.commands.Mobile.getAvailability(['connection']),
accessCertificate
);
Response
Parameters
availability | (Object) |
updateRate.value | (String) enum |
rateLimit.value | (Number) |
rateLimit.unit | (String) |
appliesPer.value | (String) |
Discussion
The response contains an availability object for each property, as shown in the example
Example
{
"connection": {
"availability": {
"updateRate": {
"value": "trip_high"
},
"rateLimit": {
"value": 64,
"unit": "hertz"
},
"appliesPer": {
"value": "vehicle"
}
}
}
}