@@ -28,6 +28,8 @@ function AccountStatus()
2828{
2929 this . uid = undefined ;
3030
31+ this . type = undefined ;
32+ this . validTo = undefined ;
3133 this . billingPlanName = undefined ;
3234
3335 this . subscriptionPrice = undefined ;
@@ -37,6 +39,7 @@ function AccountStatus()
3739 this . itemPriceAll = undefined ;
3840 this . itemPriceIBAN = undefined ;
3941 this . itemPriceWhitelist = undefined ;
42+ this . itemPriceSearchVAT = undefined ;
4043
4144 this . limit = undefined ;
4245 this . requestDelay = undefined ;
@@ -60,6 +63,7 @@ function AccountStatus()
6063 this . funcGetVATStatus = undefined ;
6164 this . funcGetIBANStatus = undefined ;
6265 this . funcGetWhitelistStatus = undefined ;
66+ this . funcSearchVAT = undefined ;
6367
6468 this . invoiceDataCount = undefined ;
6569 this . allDataCount = undefined ;
@@ -68,6 +72,7 @@ function AccountStatus()
6872 this . viesStatusCount = undefined ;
6973 this . ibanStatusCount = undefined ;
7074 this . whitelistStatusCount = undefined ;
75+ this . searchVATCount = undefined ;
7176 this . totalCount = undefined ;
7277}
7378
@@ -76,49 +81,54 @@ function AccountStatus()
7681 * @return {string } object info
7782 */
7883AccountStatus . prototype . toString = function ( ) {
79- return "AccountStatus: [uid = " + this . uid
80- + ", billingPlanName = " + this . billingPlanName
81-
82- + ", subscriptionPrice = " + this . subscriptionPrice
83- + ", itemPrice = " + this . itemPrice
84- + ", itemPriceStatus = " + this . itemPriceStatus
85- + ", itemPriceInvoice = " + this . itemPriceInvoice
86- + ", itemPriceAll = " + this . itemPriceAll
87- + ", itemPriceIBAN = " + this . itemPriceIBAN
88- + ", itemPriceWhitelist = " + this . itemPriceWhitelist
89-
90- + ", limit = " + this . limit
91- + ", requestDelay = " + this . requestDelay
92- + ", domainLimit = " + this . domainLimit
93-
94- + ", overPlanAllowed = " + this . overPlanAllowed
95- + ", terytCodes = " + this . terytCodes
96- + ", excelAddIn = " + this . excelAddIn
97- + ", jpkVat = " + this . jpkVat
98- + ", stats = " + this . stats
99- + ", NIPMonitor = " + this . nipMonitor
100-
101- + ", searchByNIP = " + this . searchByNIP
102- + ", searchByREGON = " + this . searchByREGON
103- + ", searchByKRS = " + this . searchByKRS
104-
105- + ", funcIsActive = " + this . funcIsActive
106- + ", funcGetInvoiceData = " + this . funcGetInvoiceData
107- + ", funcGetAllData = " + this . funcGetAllData
108- + ", funcGetVIESData = " + this . funcGetVIESData
109- + ", funcGetVATStatus = " + this . funcGetVATStatus
110- + ", funcGetIBANStatus = " + this . funcGetIBANStatus
111- + ", funcGetWhitelistStatus = " + this . funcGetWhitelistStatus
112-
113- + ", invoiceDataCount = " + this . invoiceDataCount
114- + ", allDataCount = " + this . allDataCount
115- + ", firmStatusCount = " + this . firmStatusCount
116- + ", VATStatusCount = " + this . vatStatusCount
117- + ", VIESStatusCount = " + this . viesStatusCount
118- + ", IBANStatusCount = " + this . ibanStatusCount
119- + ", whitelistStatusCount = " + this . whitelistStatusCount
120- + ", totalCount = " + this . totalCount
121- + "]" ;
84+ return 'AccountStatus: [uid = ' + this . uid
85+ + ', type = ' + this . type
86+ + ', validTo = ' + this . validTo
87+ + ', billingPlanName = ' + this . billingPlanName
88+
89+ + ', subscriptionPrice = ' + this . subscriptionPrice
90+ + ', itemPrice = ' + this . itemPrice
91+ + ', itemPriceStatus = ' + this . itemPriceStatus
92+ + ', itemPriceInvoice = ' + this . itemPriceInvoice
93+ + ', itemPriceAll = ' + this . itemPriceAll
94+ + ', itemPriceIBAN = ' + this . itemPriceIBAN
95+ + ', itemPriceWhitelist = ' + this . itemPriceWhitelist
96+ + ', itemPriceSearchVAT = ' + this . itemPriceSearchVAT
97+
98+ + ', limit = ' + this . limit
99+ + ', requestDelay = ' + this . requestDelay
100+ + ', domainLimit = ' + this . domainLimit
101+
102+ + ', overPlanAllowed = ' + this . overPlanAllowed
103+ + ', terytCodes = ' + this . terytCodes
104+ + ', excelAddIn = ' + this . excelAddIn
105+ + ', jpkVat = ' + this . jpkVat
106+ + ', stats = ' + this . stats
107+ + ', NIPMonitor = ' + this . nipMonitor
108+
109+ + ', searchByNIP = ' + this . searchByNIP
110+ + ', searchByREGON = ' + this . searchByREGON
111+ + ', searchByKRS = ' + this . searchByKRS
112+
113+ + ', funcIsActive = ' + this . funcIsActive
114+ + ', funcGetInvoiceData = ' + this . funcGetInvoiceData
115+ + ', funcGetAllData = ' + this . funcGetAllData
116+ + ', funcGetVIESData = ' + this . funcGetVIESData
117+ + ', funcGetVATStatus = ' + this . funcGetVATStatus
118+ + ', funcGetIBANStatus = ' + this . funcGetIBANStatus
119+ + ', funcGetWhitelistStatus = ' + this . funcGetWhitelistStatus
120+ + ', funcSearchVAT = ' + this . funcSearchVAT
121+
122+ + ', invoiceDataCount = ' + this . invoiceDataCount
123+ + ', allDataCount = ' + this . allDataCount
124+ + ', firmStatusCount = ' + this . firmStatusCount
125+ + ', VATStatusCount = ' + this . vatStatusCount
126+ + ', VIESStatusCount = ' + this . viesStatusCount
127+ + ', IBANStatusCount = ' + this . ibanStatusCount
128+ + ', whitelistStatusCount = ' + this . whitelistStatusCount
129+ + ', searchVATCount = ' + this . searchVATCount
130+ + ', totalCount = ' + this . totalCount
131+ + ']' ;
122132} ;
123133
124134module . exports = AccountStatus ;
0 commit comments