Skip to content

Instantly share code, notes, and snippets.

@bishalg
Last active August 29, 2015 14:22
Show Gist options
  • Save bishalg/687c658a49c2b4cbae6f to your computer and use it in GitHub Desktop.
Save bishalg/687c658a49c2b4cbae6f to your computer and use it in GitHub Desktop.
Side Menu JSON Example
{
"success": true,
"meanuItems": [
{
"menuTitle": "MY STUFF",
"isClosed": false,
"items": [
{
"title": "ITINERARIES",
"icon": "itineraries_icon"
},
{
"title": "SHORTLISTS",
"icon": "shortlists_icon"
},
{
"title": "NOTES",
"icon": "notes_icon"
}
]
},
{
"menuTitle": "HISTORY",
"isClosed": false,
"items": [
{
"title": "SHARED",
"icon": "shared_icon"
},
{
"title": "BOOKED",
"icon": "booked_icon"
},
{
"title": "VIEWED",
"icon": "viewed_icon"
}
]
},
{
"menuTitle": "PERSONALIZATIONS",
"isClosed": false,
"items": [
{
"title": "PROFILES",
"icon": "profiles_icon"
},
{
"title": "PRESETS",
"icon": "presets_icon"
},
{
"title": "SAVED ADDRESSES",
"icon": "saved_addresses_icon"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment