diff --git a/accountant/views/accounts.py b/accountant/views/accounts.py index 3927a7a..eab9d77 100644 --- a/accountant/views/accounts.py +++ b/accountant/views/accounts.py @@ -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.