@esolve/ng-esolve-connect 0.26.4 → 0.27.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/account/esolve-account.service.mjs +3 -12
- package/esm2020/lib/account/user-account/classes/esolve-statement-ageing.model.mjs +9 -0
- package/esm2020/lib/account/user-account/classes/esolve-statement-balances.model.mjs +10 -0
- package/esm2020/lib/account/user-account/classes/esolve-statement-transaction.model.mjs +15 -0
- package/esm2020/lib/account/user-account/classes/esolve-statement.model.mjs +11 -0
- package/esm2020/lib/account/user-account/classes/esolve-user-account-business.model.mjs +11 -0
- package/esm2020/lib/account/user-account/classes/esolve-user-account-contact.model.mjs +10 -0
- package/esm2020/lib/account/user-account/classes/esolve-user-account-result.model.mjs +9 -0
- package/esm2020/lib/account/user-account/classes/esolve-user-account.model.mjs +24 -0
- package/esm2020/lib/account/user-account/classes/esolve-user-client-account-balances.model.mjs +13 -0
- package/esm2020/lib/account/user-account/classes/esolve-user-client-account.model.mjs +46 -0
- package/esm2020/lib/account/user-account/classes/index.mjs +7 -0
- package/esm2020/lib/account/user-account/index.mjs +3 -11
- package/esm2020/lib/account/user-account/interfaces/esolve-statement-ageing-record.interface.mjs +2 -0
- package/esm2020/lib/account/user-account/interfaces/esolve-statement-balances-record.interface.mjs +2 -0
- package/esm2020/lib/account/user-account/interfaces/esolve-statement-record.interface.mjs +2 -0
- package/esm2020/lib/account/user-account/interfaces/esolve-statement-transaction-record.interface.mjs +2 -0
- package/esm2020/lib/account/user-account/interfaces/esolve-user-account-data.interface.mjs +2 -0
- package/esm2020/lib/account/user-account/interfaces/esolve-user-account-record.interface.mjs +2 -0
- package/esm2020/lib/account/user-account/interfaces/esolve-user-client-account-balances-record.interface.mjs +2 -0
- package/esm2020/lib/account/user-account/interfaces/esolve-user-client-account-record.interface.mjs +2 -0
- package/esm2020/lib/account/user-account/interfaces/index.mjs +9 -0
- package/esm2020/lib/auth/esolve-auth-interceptor.service.mjs +6 -1
- package/esm2020/lib/cart/esolve-cart.service.mjs +16 -5
- package/esm2020/lib/coupons/classes/esolve-coupon.model.mjs +29 -0
- package/esm2020/lib/coupons/classes/index.mjs +2 -0
- package/esm2020/lib/coupons/esolve-coupons.service.mjs +186 -0
- package/esm2020/lib/coupons/index.mjs +9 -0
- package/esm2020/lib/coupons/interfaces/esolve-coupon-record.interface.mjs +2 -0
- package/esm2020/lib/coupons/interfaces/esolve-coupon-validation-error.interface.mjs +2 -0
- package/esm2020/lib/coupons/interfaces/esolve-coupon-validation-result.interface.mjs +3 -0
- package/esm2020/lib/coupons/interfaces/esolve-coupon-validation.interface.mjs +2 -0
- package/esm2020/lib/coupons/interfaces/index.mjs +5 -0
- package/esm2020/lib/coupons/types/esolve-coupons-cache.type.mjs +2 -0
- package/esm2020/lib/coupons/types/index.mjs +2 -0
- package/esm2020/lib/esolve-connect.config.mjs +1 -1
- package/esm2020/lib/stock/classes/esolve-stock-item-base.model.mjs +7 -1
- package/esm2020/lib/stock/classes/esolve-stock-transaction-history.model.mjs +7 -0
- package/esm2020/lib/stock/esolve-stock.service.mjs +59 -2
- package/esm2020/lib/stock/interfaces/esolve-stock-base-record.interface.mjs +1 -1
- package/esm2020/public-api.mjs +3 -1
- package/fesm2015/esolve-ng-esolve-connect.mjs +434 -81
- package/fesm2015/esolve-ng-esolve-connect.mjs.map +1 -1
- package/fesm2020/esolve-ng-esolve-connect.mjs +418 -77
- package/fesm2020/esolve-ng-esolve-connect.mjs.map +1 -1
- package/lib/account/esolve-account.service.d.ts +1 -2
- package/lib/account/user-account/classes/esolve-statement-ageing.model.d.ts +6 -0
- package/lib/account/user-account/classes/esolve-statement-balances.model.d.ts +7 -0
- package/lib/account/user-account/classes/esolve-statement-transaction.model.d.ts +12 -0
- package/lib/account/user-account/classes/esolve-statement.model.d.ts +8 -0
- package/lib/account/user-account/classes/esolve-user-account-business.model.d.ts +8 -0
- package/lib/account/user-account/classes/esolve-user-account-contact.model.d.ts +7 -0
- package/lib/account/user-account/{esolve-user-account-result.model.d.ts → classes/esolve-user-account-result.model.d.ts} +1 -1
- package/lib/account/user-account/{esolve-user-account.model.d.ts → classes/esolve-user-account.model.d.ts} +11 -10
- package/lib/account/user-account/{esolve-user-client-account-balances.model.d.ts → classes/esolve-user-client-account-balances.model.d.ts} +1 -1
- package/lib/account/user-account/classes/esolve-user-client-account.model.d.ts +43 -0
- package/lib/account/user-account/classes/index.d.ts +6 -0
- package/lib/account/user-account/index.d.ts +2 -10
- package/lib/account/user-account/interfaces/esolve-statement-ageing-record.interface.d.ts +4 -0
- package/lib/account/user-account/interfaces/esolve-statement-balances-record.interface.d.ts +5 -0
- package/lib/account/user-account/interfaces/esolve-statement-record.interface.d.ts +6 -0
- package/lib/account/user-account/interfaces/esolve-statement-transaction-record.interface.d.ts +10 -0
- package/lib/account/user-account/{esolve-user-account-data.interface.d.ts → interfaces/esolve-user-account-data.interface.d.ts} +0 -0
- package/lib/account/user-account/{esolve-user-account-record.interface.d.ts → interfaces/esolve-user-account-record.interface.d.ts} +0 -0
- package/lib/account/user-account/{esolve-user-client-account-balances-record.interface.d.ts → interfaces/esolve-user-client-account-balances-record.interface.d.ts} +1 -1
- package/lib/account/user-account/{esolve-user-client-account-record.interface.d.ts → interfaces/esolve-user-client-account-record.interface.d.ts} +2 -1
- package/lib/account/user-account/interfaces/index.d.ts +8 -0
- package/lib/cart/esolve-cart.service.d.ts +5 -1
- package/lib/coupons/classes/esolve-coupon.model.d.ts +20 -0
- package/lib/coupons/classes/index.d.ts +1 -0
- package/lib/coupons/esolve-coupons.service.d.ts +35 -0
- package/lib/coupons/index.d.ts +4 -0
- package/lib/coupons/interfaces/esolve-coupon-record.interface.d.ts +8 -0
- package/lib/coupons/interfaces/esolve-coupon-validation-error.interface.d.ts +4 -0
- package/lib/coupons/interfaces/esolve-coupon-validation-result.interface.d.ts +4 -0
- package/lib/coupons/interfaces/esolve-coupon-validation.interface.d.ts +6 -0
- package/lib/coupons/interfaces/index.d.ts +4 -0
- package/lib/coupons/types/esolve-coupons-cache.type.d.ts +1 -0
- package/lib/coupons/types/index.d.ts +1 -0
- package/lib/esolve-connect.config.d.ts +14 -0
- package/lib/stock/classes/esolve-stock-item-base.model.d.ts +5 -0
- package/lib/stock/classes/esolve-stock-transaction-history.model.d.ts +5 -0
- package/lib/stock/esolve-stock.service.d.ts +11 -0
- package/lib/stock/interfaces/esolve-stock-base-record.interface.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/esm2020/lib/account/user-account/esolve-user-account-business.model.mjs +0 -9
- package/esm2020/lib/account/user-account/esolve-user-account-contact.model.mjs +0 -8
- package/esm2020/lib/account/user-account/esolve-user-account-data.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/esolve-user-account-record.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/esolve-user-account-result.model.mjs +0 -9
- package/esm2020/lib/account/user-account/esolve-user-account.model.mjs +0 -14
- package/esm2020/lib/account/user-account/esolve-user-client-account-balances-record.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/esolve-user-client-account-balances.model.mjs +0 -13
- package/esm2020/lib/account/user-account/esolve-user-client-account-record.interface.mjs +0 -2
- package/esm2020/lib/account/user-account/esolve-user-client-account.model.mjs +0 -43
- package/lib/account/user-account/esolve-user-account-business.model.d.ts +0 -7
- package/lib/account/user-account/esolve-user-account-contact.model.d.ts +0 -6
- package/lib/account/user-account/esolve-user-client-account.model.d.ts +0 -41
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
export class EsolveUserClientAccount {
|
|
2
|
-
constructor(account, branch_code, account_group, pricing_group, price_list, loyalty_classification_id, company_name, client_contact_person, client_firstname, client_surname, client_email, client_contact_number, client_fax_number, client_cellphone_number, client_id_number, address_description, street, suburb, city, province, country, postal_code, postal_address, delivery_address, latitude, longitude, vat_number, credit_limit, pending_invoice_balance, external_account_balance, ageing, balance_last_updated, default_sellprice, client_classification, override_stock_listing_identifiers, requires_transaction_approval, is_active, external_statement) {
|
|
3
|
-
this.account = account;
|
|
4
|
-
this.branch_code = branch_code;
|
|
5
|
-
this.account_group = account_group;
|
|
6
|
-
this.pricing_group = pricing_group;
|
|
7
|
-
this.price_list = price_list;
|
|
8
|
-
this.loyalty_classification_id = loyalty_classification_id;
|
|
9
|
-
this.company_name = company_name;
|
|
10
|
-
this.client_contact_person = client_contact_person;
|
|
11
|
-
this.client_firstname = client_firstname;
|
|
12
|
-
this.client_surname = client_surname;
|
|
13
|
-
this.client_email = client_email;
|
|
14
|
-
this.client_contact_number = client_contact_number;
|
|
15
|
-
this.client_fax_number = client_fax_number;
|
|
16
|
-
this.client_cellphone_number = client_cellphone_number;
|
|
17
|
-
this.client_id_number = client_id_number;
|
|
18
|
-
this.address_description = address_description;
|
|
19
|
-
this.street = street;
|
|
20
|
-
this.suburb = suburb;
|
|
21
|
-
this.city = city;
|
|
22
|
-
this.province = province;
|
|
23
|
-
this.country = country;
|
|
24
|
-
this.postal_code = postal_code;
|
|
25
|
-
this.postal_address = postal_address;
|
|
26
|
-
this.delivery_address = delivery_address;
|
|
27
|
-
this.latitude = latitude;
|
|
28
|
-
this.longitude = longitude;
|
|
29
|
-
this.vat_number = vat_number;
|
|
30
|
-
this.credit_limit = credit_limit;
|
|
31
|
-
this.pending_invoice_balance = pending_invoice_balance;
|
|
32
|
-
this.external_account_balance = external_account_balance;
|
|
33
|
-
this.ageing = ageing;
|
|
34
|
-
this.balance_last_updated = balance_last_updated;
|
|
35
|
-
this.default_sellprice = default_sellprice;
|
|
36
|
-
this.client_classification = client_classification;
|
|
37
|
-
this.override_stock_listing_identifiers = override_stock_listing_identifiers;
|
|
38
|
-
this.requires_transaction_approval = requires_transaction_approval;
|
|
39
|
-
this.is_active = is_active;
|
|
40
|
-
this.external_statement = external_statement;
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZXNvbHZlLXVzZXItY2xpZW50LWFjY291bnQubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZy1lc29sdmUtY29ubmVjdC9zcmMvbGliL2FjY291bnQvdXNlci1hY2NvdW50L2Vzb2x2ZS11c2VyLWNsaWVudC1hY2NvdW50Lm1vZGVsLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sT0FBTyx1QkFBdUI7SUFDaEMsWUFDVyxPQUFnQixFQUNoQixXQUFvQixFQUNwQixhQUFzQixFQUN0QixhQUFzQixFQUN0QixVQUFtQixFQUNuQix5QkFBa0MsRUFDbEMsWUFBcUIsRUFDckIscUJBQThCLEVBQzlCLGdCQUF5QixFQUN6QixjQUF1QixFQUN2QixZQUFxQixFQUNyQixxQkFBOEIsRUFDOUIsaUJBQTBCLEVBQzFCLHVCQUFnQyxFQUNoQyxnQkFBeUIsRUFDekIsbUJBQTRCLEVBQzVCLE1BQWUsRUFDZixNQUFlLEVBQ2YsSUFBYSxFQUNiLFFBQWlCLEVBQ2pCLE9BQWdCLEVBQ2hCLFdBQW9CLEVBQ3BCLGNBQXVCLEVBQ3ZCLGdCQUF5QixFQUN6QixRQUFpQixFQUNqQixTQUFrQixFQUNsQixVQUFtQixFQUNuQixZQUFxQixFQUNyQix1QkFBZ0MsRUFDaEMsd0JBQWlDLEVBQ2pDLE1BQWUsRUFDZixvQkFBNkIsRUFDN0IsaUJBQTBCLEVBQzFCLHFCQUE4QixFQUM5QixrQ0FBMkMsRUFDM0MsNkJBQXNDLEVBQ3RDLFNBQW1CLEVBQ25CLGtCQUEyQjtRQXJDM0IsWUFBTyxHQUFQLE9BQU8sQ0FBUztRQUNoQixnQkFBVyxHQUFYLFdBQVcsQ0FBUztRQUNwQixrQkFBYSxHQUFiLGFBQWEsQ0FBUztRQUN0QixrQkFBYSxHQUFiLGFBQWEsQ0FBUztRQUN0QixlQUFVLEdBQVYsVUFBVSxDQUFTO1FBQ25CLDhCQUF5QixHQUF6Qix5QkFBeUIsQ0FBUztRQUNsQyxpQkFBWSxHQUFaLFlBQVksQ0FBUztRQUNyQiwwQkFBcUIsR0FBckIscUJBQXFCLENBQVM7UUFDOUIscUJBQWdCLEdBQWhCLGdCQUFnQixDQUFTO1FBQ3pCLG1CQUFjLEdBQWQsY0FBYyxDQUFTO1FBQ3ZCLGlCQUFZLEdBQVosWUFBWSxDQUFTO1FBQ3JCLDBCQUFxQixHQUFyQixxQkFBcUIsQ0FBUztRQUM5QixzQkFBaUIsR0FBakIsaUJBQWlCLENBQVM7UUFDMUIsNEJBQXVCLEdBQXZCLHVCQUF1QixDQUFTO1FBQ2hDLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBUztRQUN6Qix3QkFBbUIsR0FBbkIsbUJBQW1CLENBQVM7UUFDNUIsV0FBTSxHQUFOLE1BQU0sQ0FBUztRQUNmLFdBQU0sR0FBTixNQUFNLENBQVM7UUFDZixTQUFJLEdBQUosSUFBSSxDQUFTO1FBQ2IsYUFBUSxHQUFSLFFBQVEsQ0FBUztRQUNqQixZQUFPLEdBQVAsT0FBTyxDQUFTO1FBQ2hCLGdCQUFXLEdBQVgsV0FBVyxDQUFTO1FBQ3BCLG1CQUFjLEdBQWQsY0FBYyxDQUFTO1FBQ3ZCLHFCQUFnQixHQUFoQixnQkFBZ0IsQ0FBUztRQUN6QixhQUFRLEdBQVIsUUFBUSxDQUFTO1FBQ2pCLGNBQVMsR0FBVCxTQUFTLENBQVM7UUFDbEIsZUFBVSxHQUFWLFVBQVUsQ0FBUztRQUNuQixpQkFBWSxHQUFaLFlBQVksQ0FBUztRQUNyQiw0QkFBdUIsR0FBdkIsdUJBQXVCLENBQVM7UUFDaEMsNkJBQXdCLEdBQXhCLHdCQUF3QixDQUFTO1FBQ2pDLFdBQU0sR0FBTixNQUFNLENBQVM7UUFDZix5QkFBb0IsR0FBcEIsb0JBQW9CLENBQVM7UUFDN0Isc0JBQWlCLEdBQWpCLGlCQUFpQixDQUFTO1FBQzFCLDBCQUFxQixHQUFyQixxQkFBcUIsQ0FBUztRQUM5Qix1Q0FBa0MsR0FBbEMsa0NBQWtDLENBQVM7UUFDM0Msa0NBQTZCLEdBQTdCLDZCQUE2QixDQUFTO1FBQ3RDLGNBQVMsR0FBVCxTQUFTLENBQVU7UUFDbkIsdUJBQWtCLEdBQWxCLGtCQUFrQixDQUFTO0lBQ2xDLENBQUM7Q0FDUiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjbGFzcyBFc29sdmVVc2VyQ2xpZW50QWNjb3VudCB7XHJcbiAgICBjb25zdHJ1Y3RvcihcclxuICAgICAgICBwdWJsaWMgYWNjb3VudD86IHN0cmluZyxcclxuICAgICAgICBwdWJsaWMgYnJhbmNoX2NvZGU/OiBzdHJpbmcsXHJcbiAgICAgICAgcHVibGljIGFjY291bnRfZ3JvdXA/OiBzdHJpbmcsXHJcbiAgICAgICAgcHVibGljIHByaWNpbmdfZ3JvdXA/OiBzdHJpbmcsXHJcbiAgICAgICAgcHVibGljIHByaWNlX2xpc3Q/OiBudW1iZXIsXHJcbiAgICAgICAgcHVibGljIGxveWFsdHlfY2xhc3NpZmljYXRpb25faWQ/OiBudW1iZXIsXHJcbiAgICAgICAgcHVibGljIGNvbXBhbnlfbmFtZT86IHN0cmluZyxcclxuICAgICAgICBwdWJsaWMgY2xpZW50X2NvbnRhY3RfcGVyc29uPzogc3RyaW5nLFxyXG4gICAgICAgIHB1YmxpYyBjbGllbnRfZmlyc3RuYW1lPzogc3RyaW5nLFxyXG4gICAgICAgIHB1YmxpYyBjbGllbnRfc3VybmFtZT86IHN0cmluZyxcclxuICAgICAgICBwdWJsaWMgY2xpZW50X2VtYWlsPzogc3RyaW5nLFxyXG4gICAgICAgIHB1YmxpYyBjbGllbnRfY29udGFjdF9udW1iZXI/OiBzdHJpbmcsXHJcbiAgICAgICAgcHVibGljIGNsaWVudF9mYXhfbnVtYmVyPzogc3RyaW5nLFxyXG4gICAgICAgIHB1YmxpYyBjbGllbnRfY2VsbHBob25lX251bWJlcj86IHN0cmluZyxcclxuICAgICAgICBwdWJsaWMgY2xpZW50X2lkX251bWJlcj86IHN0cmluZyxcclxuICAgICAgICBwdWJsaWMgYWRkcmVzc19kZXNjcmlwdGlvbj86IHN0cmluZyxcclxuICAgICAgICBwdWJsaWMgc3RyZWV0Pzogc3RyaW5nLFxyXG4gICAgICAgIHB1YmxpYyBzdWJ1cmI/OiBzdHJpbmcsXHJcbiAgICAgICAgcHVibGljIGNpdHk/OiBzdHJpbmcsXHJcbiAgICAgICAgcHVibGljIHByb3ZpbmNlPzogc3RyaW5nLFxyXG4gICAgICAgIHB1YmxpYyBjb3VudHJ5Pzogc3RyaW5nLFxyXG4gICAgICAgIHB1YmxpYyBwb3N0YWxfY29kZT86IHN0cmluZyxcclxuICAgICAgICBwdWJsaWMgcG9zdGFsX2FkZHJlc3M/OiBzdHJpbmcsXHJcbiAgICAgICAgcHVibGljIGRlbGl2ZXJ5X2FkZHJlc3M/OiBzdHJpbmcsXHJcbiAgICAgICAgcHVibGljIGxhdGl0dWRlPzogbnVtYmVyLFxyXG4gICAgICAgIHB1YmxpYyBsb25naXR1ZGU/OiBudW1iZXIsXHJcbiAgICAgICAgcHVibGljIHZhdF9udW1iZXI/OiBzdHJpbmcsXHJcbiAgICAgICAgcHVibGljIGNyZWRpdF9saW1pdD86IG51bWJlcixcclxuICAgICAgICBwdWJsaWMgcGVuZGluZ19pbnZvaWNlX2JhbGFuY2U/OiBudW1iZXIsXHJcbiAgICAgICAgcHVibGljIGV4dGVybmFsX2FjY291bnRfYmFsYW5jZT86IG51bWJlcixcclxuICAgICAgICBwdWJsaWMgYWdlaW5nPzogc3RyaW5nLFxyXG4gICAgICAgIHB1YmxpYyBiYWxhbmNlX2xhc3RfdXBkYXRlZD86IHN0cmluZyxcclxuICAgICAgICBwdWJsaWMgZGVmYXVsdF9zZWxscHJpY2U/OiBudW1iZXIsXHJcbiAgICAgICAgcHVibGljIGNsaWVudF9jbGFzc2lmaWNhdGlvbj86IHN0cmluZyxcclxuICAgICAgICBwdWJsaWMgb3ZlcnJpZGVfc3RvY2tfbGlzdGluZ19pZGVudGlmaWVycz86IHN0cmluZyxcclxuICAgICAgICBwdWJsaWMgcmVxdWlyZXNfdHJhbnNhY3Rpb25fYXBwcm92YWw/OiBzdHJpbmcsXHJcbiAgICAgICAgcHVibGljIGlzX2FjdGl2ZT86IGJvb2xlYW4sXHJcbiAgICAgICAgcHVibGljIGV4dGVybmFsX3N0YXRlbWVudD86IHN0cmluZyxcclxuICAgICkgeyB9XHJcbn1cclxuIl19
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export declare class EsolveUserAccountContact {
|
|
2
|
-
tel_number?: string | undefined;
|
|
3
|
-
cell_number?: string | undefined;
|
|
4
|
-
fax_number?: string | undefined;
|
|
5
|
-
constructor(tel_number?: string | undefined, cell_number?: string | undefined, fax_number?: string | undefined);
|
|
6
|
-
}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
export declare class EsolveUserClientAccount {
|
|
2
|
-
account?: string | undefined;
|
|
3
|
-
branch_code?: string | undefined;
|
|
4
|
-
account_group?: string | undefined;
|
|
5
|
-
pricing_group?: string | undefined;
|
|
6
|
-
price_list?: number | undefined;
|
|
7
|
-
loyalty_classification_id?: number | undefined;
|
|
8
|
-
company_name?: string | undefined;
|
|
9
|
-
client_contact_person?: string | undefined;
|
|
10
|
-
client_firstname?: string | undefined;
|
|
11
|
-
client_surname?: string | undefined;
|
|
12
|
-
client_email?: string | undefined;
|
|
13
|
-
client_contact_number?: string | undefined;
|
|
14
|
-
client_fax_number?: string | undefined;
|
|
15
|
-
client_cellphone_number?: string | undefined;
|
|
16
|
-
client_id_number?: string | undefined;
|
|
17
|
-
address_description?: string | undefined;
|
|
18
|
-
street?: string | undefined;
|
|
19
|
-
suburb?: string | undefined;
|
|
20
|
-
city?: string | undefined;
|
|
21
|
-
province?: string | undefined;
|
|
22
|
-
country?: string | undefined;
|
|
23
|
-
postal_code?: string | undefined;
|
|
24
|
-
postal_address?: string | undefined;
|
|
25
|
-
delivery_address?: string | undefined;
|
|
26
|
-
latitude?: number | undefined;
|
|
27
|
-
longitude?: number | undefined;
|
|
28
|
-
vat_number?: string | undefined;
|
|
29
|
-
credit_limit?: number | undefined;
|
|
30
|
-
pending_invoice_balance?: number | undefined;
|
|
31
|
-
external_account_balance?: number | undefined;
|
|
32
|
-
ageing?: string | undefined;
|
|
33
|
-
balance_last_updated?: string | undefined;
|
|
34
|
-
default_sellprice?: number | undefined;
|
|
35
|
-
client_classification?: string | undefined;
|
|
36
|
-
override_stock_listing_identifiers?: string | undefined;
|
|
37
|
-
requires_transaction_approval?: string | undefined;
|
|
38
|
-
is_active?: boolean | undefined;
|
|
39
|
-
external_statement?: string | undefined;
|
|
40
|
-
constructor(account?: string | undefined, branch_code?: string | undefined, account_group?: string | undefined, pricing_group?: string | undefined, price_list?: number | undefined, loyalty_classification_id?: number | undefined, company_name?: string | undefined, client_contact_person?: string | undefined, client_firstname?: string | undefined, client_surname?: string | undefined, client_email?: string | undefined, client_contact_number?: string | undefined, client_fax_number?: string | undefined, client_cellphone_number?: string | undefined, client_id_number?: string | undefined, address_description?: string | undefined, street?: string | undefined, suburb?: string | undefined, city?: string | undefined, province?: string | undefined, country?: string | undefined, postal_code?: string | undefined, postal_address?: string | undefined, delivery_address?: string | undefined, latitude?: number | undefined, longitude?: number | undefined, vat_number?: string | undefined, credit_limit?: number | undefined, pending_invoice_balance?: number | undefined, external_account_balance?: number | undefined, ageing?: string | undefined, balance_last_updated?: string | undefined, default_sellprice?: number | undefined, client_classification?: string | undefined, override_stock_listing_identifiers?: string | undefined, requires_transaction_approval?: string | undefined, is_active?: boolean | undefined, external_statement?: string | undefined);
|
|
41
|
-
}
|