From ffd64ffca0c0184c1be30529bb2348b011afe9ce Mon Sep 17 00:00:00 2001 From: tomasgodoi Date: Sun, 2 Jul 2017 14:50:30 -0300 Subject: [PATCH] Including documentation. --- README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/README.md b/README.md index 4138480..2fb661c 100644 --- a/README.md +++ b/README.md @@ -386,6 +386,40 @@ Below is a list of currently supported actions. Requests with invalid actions or } ``` + *Sample response*: + ``` + true + ``` +* **guiDeckOverview** + + Opens the Deck Overview screen for the deck with the given name; returns `true` if succeeded or `False` otherwise. + + *Sample request*: + ``` + { + "action": "guiDeckOverview", + "params": { + "name": "Default" + } + } + ``` + + *Sample response*: + ``` + true + ``` + +* **guiDeckBrowser** + + Opens the Deck Browser screen; returns `true` if succeeded or `null` otherwise. + + *Sample request*: + ``` + { + "action": "guiDeckBrowser" + } + ``` + *Sample response*: ``` true