This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "commands": { | |
| "command": [ | |
| { | |
| "name": "cancelAlert", | |
| "description": "Cancel a vehicle alert (honk horns/flash lights).", | |
| "url": "https://api.gm.com/api/v1/account/vehicles/{VIN}/commands/cancelAlert", | |
| "isPrivSessionRequired": "false" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <#assign foo><@objectToJson object=data.myobj /></#assign> | |
| ${foo?html} | |
| <#macro objectToJson object> | |
| <@compress single_line=true> | |
| <#if object?is_hash || object?is_hash_ex> | |
| <#assign first="true"> | |
| { | |
| <#list object?keys as key> | |
| <#if first="false">,</#if> |