Fix balances_model name.

This commit is contained in:
Alexis Lahouze 2017-05-25 21:51:34 +02:00
parent a664c661ed
commit 5d498adf32
1 changed files with 4 additions and 4 deletions

View File

@ -30,16 +30,16 @@ account_model = ns.model('Account', {
})
# Account status model.
solds_model = ns.model('Solds', {
balances_model = ns.model('Account balances', {
'current': fields.Float(
readonly=True,
description='Current sold of the account'),
description='Current balance of the account'),
'pointed': fields.Float(
readonly=True,
description='Pointed sold of the account'),
description='Pointed balance of the account'),
'future': fields.Float(
readonly=True,
description='Future sold of the account')
description='Future balance of the account')
})
# Account balance model.