add example

Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2021-11-17 17:47:22 +01:00
parent 8d65d476e5
commit 75a64fef06
1 changed files with 13 additions and 0 deletions

View File

@ -70,6 +70,19 @@ export class AccountController implements Controller {
}
}
/**
* {
"success": true,
"result": {
"spotOpenOrdersAccounts": [
{
"name": "MNGO-SPOT",
"publicKey": "..."
}
]
}
}
*/
interface AccountDto {
success: boolean;
result: AccountInternalDto;