for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package stubs
// AccountBalanceWithError is a dummy json response for the `/api/account/agent/balance/v2/` endpoint with an error
func AccountBalanceWithError() []byte {
return []byte(`
{
"code": 500,
"message": "412: bad password",
"result": null
}
`)
// AccountBalance is a dummy json response for the `/api/account/agent/balance/v2/` endpoint
func AccountBalance() []byte {
"code":200,
"message":"Success",
"result":{
"name":"COMPANY_NAME",
"mainbalance":"100",
"maindeposit":"200"