|
20 | 20 |
|
21 | 21 | 'use strict'; |
22 | 22 |
|
23 | | - |
24 | 23 | /** |
25 | 24 | * Current account status information |
26 | 25 | */ |
27 | 26 | function AccountStatus() |
28 | 27 | { |
| 28 | + /** |
| 29 | + * @type {string} |
| 30 | + */ |
29 | 31 | this.uid = undefined; |
30 | 32 |
|
| 33 | + /** |
| 34 | + * @type {string} |
| 35 | + */ |
31 | 36 | this.type = undefined; |
| 37 | + |
| 38 | + /** |
| 39 | + * @type {Date} |
| 40 | + */ |
32 | 41 | this.validTo = undefined; |
| 42 | + |
| 43 | + /** |
| 44 | + * @type {string} |
| 45 | + */ |
33 | 46 | this.billingPlanName = undefined; |
34 | 47 |
|
| 48 | + /** |
| 49 | + * @type {number} |
| 50 | + */ |
35 | 51 | this.subscriptionPrice = undefined; |
| 52 | + |
| 53 | + /** |
| 54 | + * @type {number} |
| 55 | + */ |
36 | 56 | this.itemPrice = undefined; |
| 57 | + |
| 58 | + /** |
| 59 | + * @type {number} |
| 60 | + */ |
37 | 61 | this.itemPriceStatus = undefined; |
| 62 | + |
| 63 | + /** |
| 64 | + * @type {number} |
| 65 | + */ |
38 | 66 | this.itemPriceInvoice = undefined; |
| 67 | + |
| 68 | + /** |
| 69 | + * @type {number} |
| 70 | + */ |
39 | 71 | this.itemPriceAll = undefined; |
| 72 | + |
| 73 | + /** |
| 74 | + * @type {number} |
| 75 | + */ |
40 | 76 | this.itemPriceIBAN = undefined; |
| 77 | + |
| 78 | + /** |
| 79 | + * @type {number} |
| 80 | + */ |
41 | 81 | this.itemPriceWhitelist = undefined; |
| 82 | + |
| 83 | + /** |
| 84 | + * @type {number} |
| 85 | + */ |
42 | 86 | this.itemPriceSearchVAT = undefined; |
43 | 87 |
|
| 88 | + /** |
| 89 | + * @type {number} |
| 90 | + */ |
44 | 91 | this.limit = undefined; |
| 92 | + |
| 93 | + /** |
| 94 | + * @type {number} |
| 95 | + */ |
45 | 96 | this.requestDelay = undefined; |
| 97 | + |
| 98 | + /** |
| 99 | + * @type {number} |
| 100 | + */ |
46 | 101 | this.domainLimit = undefined; |
47 | 102 |
|
| 103 | + /** |
| 104 | + * @type {boolean} |
| 105 | + */ |
48 | 106 | this.overPlanAllowed = undefined; |
| 107 | + |
| 108 | + /** |
| 109 | + * @type {boolean} |
| 110 | + */ |
49 | 111 | this.terytCodes = undefined; |
| 112 | + |
| 113 | + /** |
| 114 | + * @type {boolean} |
| 115 | + */ |
50 | 116 | this.excelAddIn = undefined; |
| 117 | + |
| 118 | + /** |
| 119 | + * @type {boolean} |
| 120 | + */ |
51 | 121 | this.jpkVat = undefined; |
| 122 | + |
| 123 | + /** |
| 124 | + * @type {boolean} |
| 125 | + */ |
52 | 126 | this.cli = undefined; |
| 127 | + |
| 128 | + /** |
| 129 | + * @type {boolean} |
| 130 | + */ |
53 | 131 | this.stats = undefined; |
| 132 | + |
| 133 | + /** |
| 134 | + * @type {boolean} |
| 135 | + */ |
54 | 136 | this.nipMonitor = undefined; |
55 | 137 |
|
| 138 | + /** |
| 139 | + * @type {boolean} |
| 140 | + */ |
56 | 141 | this.searchByNIP = undefined; |
| 142 | + |
| 143 | + /** |
| 144 | + * @type {boolean} |
| 145 | + */ |
57 | 146 | this.searchByREGON = undefined; |
| 147 | + |
| 148 | + /** |
| 149 | + * @type {boolean} |
| 150 | + */ |
58 | 151 | this.searchByKRS = undefined; |
59 | 152 |
|
| 153 | + /** |
| 154 | + * @type {boolean} |
| 155 | + */ |
60 | 156 | this.funcIsActive = undefined; |
| 157 | + |
| 158 | + /** |
| 159 | + * @type {boolean} |
| 160 | + */ |
61 | 161 | this.funcGetInvoiceData = undefined; |
| 162 | + |
| 163 | + /** |
| 164 | + * @type {boolean} |
| 165 | + */ |
62 | 166 | this.funcGetAllData = undefined; |
| 167 | + |
| 168 | + /** |
| 169 | + * @type {boolean} |
| 170 | + */ |
63 | 171 | this.funcGetVIESData = undefined; |
| 172 | + |
| 173 | + /** |
| 174 | + * @type {boolean} |
| 175 | + */ |
64 | 176 | this.funcGetVATStatus = undefined; |
| 177 | + |
| 178 | + /** |
| 179 | + * @type {boolean} |
| 180 | + */ |
65 | 181 | this.funcGetIBANStatus = undefined; |
| 182 | + |
| 183 | + /** |
| 184 | + * @type {boolean} |
| 185 | + */ |
66 | 186 | this.funcGetWhitelistStatus = undefined; |
| 187 | + |
| 188 | + /** |
| 189 | + * @type {boolean} |
| 190 | + */ |
67 | 191 | this.funcSearchVAT = undefined; |
68 | 192 |
|
| 193 | + /** |
| 194 | + * @type {number} |
| 195 | + */ |
69 | 196 | this.invoiceDataCount = undefined; |
| 197 | + |
| 198 | + /** |
| 199 | + * @type {number} |
| 200 | + */ |
70 | 201 | this.allDataCount = undefined; |
| 202 | + |
| 203 | + /** |
| 204 | + * @type {number} |
| 205 | + */ |
71 | 206 | this.firmStatusCount = undefined; |
| 207 | + |
| 208 | + /** |
| 209 | + * @type {number} |
| 210 | + */ |
72 | 211 | this.vatStatusCount = undefined; |
| 212 | + |
| 213 | + /** |
| 214 | + * @type {number} |
| 215 | + */ |
73 | 216 | this.viesStatusCount = undefined; |
| 217 | + |
| 218 | + /** |
| 219 | + * @type {number} |
| 220 | + */ |
74 | 221 | this.ibanStatusCount = undefined; |
| 222 | + |
| 223 | + /** |
| 224 | + * @type {number} |
| 225 | + */ |
75 | 226 | this.whitelistStatusCount = undefined; |
| 227 | + |
| 228 | + /** |
| 229 | + * @type {number} |
| 230 | + */ |
76 | 231 | this.searchVATCount = undefined; |
| 232 | + |
| 233 | + /** |
| 234 | + * @type {number} |
| 235 | + */ |
77 | 236 | this.totalCount = undefined; |
78 | 237 | } |
79 | 238 |
|
|
0 commit comments