Valet Mode
getValetMode([, propertyNames])
Declaration
hmkit.commands.ValetMode.getValetMode()
Parameters
| propertyNames | (optional) Array of names of the properties you want returned. |
Returns
ValetModeResponse
Example
hmkit.telematics.sendCommand(
hmkit.commands.ValetMode.getValetMode(),
accessCertificate
);
ValetModeResponse
Parameters
| status | (Object) |
| data.value | (String) (enum) |
| timestamp | (Date) |
Example
{
"status": {
"timestamp": "2021-06-01T15:48:04.887Z",
"data": {
"value": "active"
}
}
}
getAvailability([, propertyNames])
Declaration
hmkit.commands.ValetMode.getAvailability()
Parameters
| propertyNames | (optional) Array of names of the properties you want returned. |
Example
// Get availability for all properties
hmkit.telematics.sendCommand(
hmkit.commands.ValetMode.getAvailability(),
accessCertificate
);
// Get availability for specific properties
hmkit.telematics.sendCommand(
hmkit.commands.ValetMode.getAvailability(['status']),
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
{
"status": {
"availability": {
"updateRate": {
"value": "trip_high"
},
"rateLimit": {
"value": 64,
"unit": "hertz"
},
"appliesPer": {
"value": "vehicle"
}
}
}
}
activateDeactivateValetMode({ status })
Parameters
| status | (String) (enum) |
Example
hmkit.telematics.sendCommand(
hmkit.commands.ValetMode.activateDeactivateValetMode({
"status": "active"
}),
accessCertificate
);