We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9fddfd commit 8d7c273Copy full SHA for 8d7c273
1 file changed
lib/user_info.js
@@ -1,5 +1,6 @@
1
'use strict'
2
3
+const boolValidator = require('./validators/bool')
4
const numberValidator = require('./validators/number')
5
const stringValidator = require('./validators/string')
6
const Model = require('./model')
@@ -49,7 +50,8 @@ class UserInfo extends Model {
49
50
id: numberValidator,
51
email: stringValidator,
52
username: stringValidator,
- timezone: stringValidator
53
+ timezone: stringValidator,
54
+ isPaperTradeEnabled: boolValidator
55
}
56
})
57
0 commit comments