-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbalance.js
More file actions
42 lines (38 loc) · 1008 Bytes
/
balance.js
File metadata and controls
42 lines (38 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* Баланс обеденной карточки яндексоида.
*
* @class Balance
* @constructor
*/
function Balance() {
}
/**
* Получение информации о балансе яндексоида:
* 1. текущего состояния счета
* 2. остатка на конец месяца при текущем уровне расходов
*
* @method get
*/
Balance.prototype.get = function () {
// TODO: implementation
};
/**
* Получение информации о балансе яндексоида
*
* @protected
* @method
*/
Balance.prototype._fetch = function () {
// TODO: implementation
};
/**
* Вычисление остатка на конец месяца при текущем уровне расходов
*
* @param {Number} balance баланс яндексоида
* @protected
* @method
*/
Balance.prototype._getRemainder = function (balance) {
// TODO: implementation
};
module.exports = Balance;