@vario-software/types 2026.24.2 → 2026.24.3
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/package.json +1 -1
- package/scripting/services.d.ts +50 -50
- package/scripting/types.d.ts +347 -347
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* first contact type for this account
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
accountZoneId: AccountZoneId;
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
96
|
* Supplier of this account
|
|
@@ -143,14 +143,14 @@ export interface Account {
|
|
|
143
143
|
payablesSum: number;
|
|
144
144
|
|
|
145
145
|
/**
|
|
146
|
-
*
|
|
146
|
+
* Summe Forderungen
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
receivablesSum: number;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Kostenstelle
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
costCenter: string;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -178,14 +178,14 @@ export interface Account {
|
|
|
178
178
|
responsibleUserRef: ApiObjectReference;
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
|
-
*
|
|
181
|
+
* Erstkontakt am
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
initialContactAt: ScriptingDate;
|
|
184
184
|
|
|
185
185
|
/**
|
|
186
|
-
*
|
|
186
|
+
* calculation mode of this document
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
calculationMode: CalculationMode;
|
|
189
189
|
|
|
190
190
|
/**
|
|
191
191
|
* Sprache des Accounts
|
|
@@ -213,14 +213,14 @@ export interface Account {
|
|
|
213
213
|
persons: Array<AccountPerson>;
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* Referenz auf den Ziel-Belegtyp nach der Kommissionierung
|
|
217
217
|
*/
|
|
218
|
-
|
|
218
|
+
afterPickingTargetDocumentTypeRef: ApiObjectReference;
|
|
219
219
|
|
|
220
220
|
/**
|
|
221
|
-
*
|
|
221
|
+
* Standard-Ansprechpartner
|
|
222
222
|
*/
|
|
223
|
-
|
|
223
|
+
defaultPerson: AccountPerson;
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
226
|
* Account-Beziehungen
|
|
@@ -301,14 +301,14 @@ export interface AccountAddress {
|
|
|
301
301
|
postOfficeBox: string;
|
|
302
302
|
|
|
303
303
|
/**
|
|
304
|
-
*
|
|
304
|
+
* Country code
|
|
305
305
|
*/
|
|
306
|
-
|
|
306
|
+
countryCode: string;
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
|
-
*
|
|
309
|
+
* Street
|
|
310
310
|
*/
|
|
311
|
-
|
|
311
|
+
street: string;
|
|
312
312
|
|
|
313
313
|
/**
|
|
314
314
|
* Unique identifier of the Object
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* GLN/ILN as location identifier for this address
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
globalLocationNumber: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* Leitweg-ID
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
buyerReference: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -406,14 +406,14 @@ export interface AccountAddress {
|
|
|
406
406
|
streetAddressNumber: string;
|
|
407
407
|
|
|
408
408
|
/**
|
|
409
|
-
*
|
|
409
|
+
* Default contacts
|
|
410
410
|
*/
|
|
411
|
-
|
|
411
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Parcel station customer number
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
parcelStationCustomerNumber: string;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
419
|
* Name3
|
|
@@ -488,26 +488,26 @@ export interface AccountBankdetail {
|
|
|
488
488
|
*/
|
|
489
489
|
version: number;
|
|
490
490
|
|
|
491
|
-
/**
|
|
492
|
-
* city of the bank
|
|
493
|
-
*/
|
|
494
|
-
bankCity: string;
|
|
495
|
-
|
|
496
491
|
/**
|
|
497
492
|
* Hauptbankverbindung für
|
|
498
493
|
*/
|
|
499
494
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
500
495
|
|
|
501
496
|
/**
|
|
502
|
-
*
|
|
497
|
+
* city of the bank
|
|
503
498
|
*/
|
|
504
|
-
|
|
499
|
+
bankCity: string;
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
502
|
* origin type
|
|
508
503
|
*/
|
|
509
504
|
originType: AccountBankdetail$OriginType;
|
|
510
505
|
|
|
506
|
+
/**
|
|
507
|
+
* Is default bank?
|
|
508
|
+
*/
|
|
509
|
+
defaultBank: boolean;
|
|
510
|
+
|
|
511
511
|
/**
|
|
512
512
|
* IBAN
|
|
513
513
|
*/
|
|
@@ -999,14 +999,14 @@ export interface Article {
|
|
|
999
999
|
printLabelSettings: ArticlePrintLabelSettings;
|
|
1000
1000
|
|
|
1001
1001
|
/**
|
|
1002
|
-
*
|
|
1002
|
+
* Zolltarifnummer
|
|
1003
1003
|
*/
|
|
1004
|
-
|
|
1004
|
+
customsTariffNumber: string;
|
|
1005
1005
|
|
|
1006
1006
|
/**
|
|
1007
|
-
*
|
|
1007
|
+
* Gefahrgut Informationen
|
|
1008
1008
|
*/
|
|
1009
|
-
|
|
1009
|
+
dangerousGoodInformation: DangerousGoodInformation;
|
|
1010
1010
|
|
|
1011
1011
|
/**
|
|
1012
1012
|
* is this product purchasable
|
|
@@ -1029,14 +1029,14 @@ export interface Article {
|
|
|
1029
1029
|
sellableWithoutStock: boolean;
|
|
1030
1030
|
|
|
1031
1031
|
/**
|
|
1032
|
-
*
|
|
1032
|
+
* Seriennummern Auszeichnungsart
|
|
1033
1033
|
*/
|
|
1034
|
-
|
|
1034
|
+
serialNumberLabelingType: ArticleSerialNumberLabelingType;
|
|
1035
1035
|
|
|
1036
1036
|
/**
|
|
1037
|
-
*
|
|
1037
|
+
* Durchschnittl. EKP (Startwert)
|
|
1038
1038
|
*/
|
|
1039
|
-
|
|
1039
|
+
initialAvgPurchasePrice: number;
|
|
1040
1040
|
|
|
1041
1041
|
/**
|
|
1042
1042
|
* gross Volume in cubic meters
|
|
@@ -1219,14 +1219,14 @@ export interface Article {
|
|
|
1219
1219
|
listingDescriptionCustom: EavArticleListingDescription;
|
|
1220
1220
|
|
|
1221
1221
|
/**
|
|
1222
|
-
*
|
|
1222
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1223
1223
|
*/
|
|
1224
|
-
|
|
1224
|
+
taxLiabilityReversed: boolean;
|
|
1225
1225
|
|
|
1226
1226
|
/**
|
|
1227
|
-
*
|
|
1227
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1228
1228
|
*/
|
|
1229
|
-
|
|
1229
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
1232
|
* Notiz
|
|
@@ -1304,14 +1304,14 @@ export interface Article {
|
|
|
1304
1304
|
contingentArticleRef: ApiObjectReference;
|
|
1305
1305
|
|
|
1306
1306
|
/**
|
|
1307
|
-
*
|
|
1307
|
+
* rabattierbarer Artikel?
|
|
1308
1308
|
*/
|
|
1309
|
-
|
|
1309
|
+
discountable: boolean;
|
|
1310
1310
|
|
|
1311
1311
|
/**
|
|
1312
|
-
*
|
|
1312
|
+
* alternative name of this product
|
|
1313
1313
|
*/
|
|
1314
|
-
|
|
1314
|
+
alternativeName: string;
|
|
1315
1315
|
|
|
1316
1316
|
/**
|
|
1317
1317
|
* base capacity
|
|
@@ -1349,14 +1349,14 @@ export interface Article {
|
|
|
1349
1349
|
custom: EavArticle;
|
|
1350
1350
|
|
|
1351
1351
|
/**
|
|
1352
|
-
*
|
|
1352
|
+
* Art des Haltbarkeitsdatums
|
|
1353
1353
|
*/
|
|
1354
|
-
|
|
1354
|
+
expiryDateType: ArticleSerialExpiryDateType;
|
|
1355
1355
|
|
|
1356
1356
|
/**
|
|
1357
|
-
*
|
|
1357
|
+
* Bedarfsermittlung nur über Reservierungen
|
|
1358
1358
|
*/
|
|
1359
|
-
|
|
1359
|
+
needsAssessmentOnlyOnReservationBasis: boolean;
|
|
1360
1360
|
|
|
1361
1361
|
/**
|
|
1362
1362
|
* Hersteller
|
|
@@ -1554,14 +1554,14 @@ export interface ArticleCustomer {
|
|
|
1554
1554
|
defaultGrossPrice: number;
|
|
1555
1555
|
|
|
1556
1556
|
/**
|
|
1557
|
-
*
|
|
1557
|
+
* Abweichende Produktnummer
|
|
1558
1558
|
*/
|
|
1559
|
-
|
|
1559
|
+
deviatingArticleNumber: string;
|
|
1560
1560
|
|
|
1561
1561
|
/**
|
|
1562
|
-
*
|
|
1562
|
+
* Art der Preisermittlung
|
|
1563
1563
|
*/
|
|
1564
|
-
|
|
1564
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1565
1565
|
|
|
1566
1566
|
/**
|
|
1567
1567
|
* Artikelnummer
|
|
@@ -1676,14 +1676,14 @@ export interface ArticleListing {
|
|
|
1676
1676
|
proposedLowestPriceGross: number;
|
|
1677
1677
|
|
|
1678
1678
|
/**
|
|
1679
|
-
*
|
|
1679
|
+
* der Sales Channel
|
|
1680
1680
|
*/
|
|
1681
|
-
|
|
1681
|
+
salesChannelRef: ApiObjectReference;
|
|
1682
1682
|
|
|
1683
1683
|
/**
|
|
1684
|
-
* der
|
|
1684
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1685
1685
|
*/
|
|
1686
|
-
|
|
1686
|
+
customLowestPriceGross: number;
|
|
1687
1687
|
|
|
1688
1688
|
/**
|
|
1689
1689
|
* soll der Artikel gelistet werden
|
|
@@ -1716,14 +1716,14 @@ export interface ArticleListing {
|
|
|
1716
1716
|
alternativeName: WithDefaults<String>;
|
|
1717
1717
|
|
|
1718
1718
|
/**
|
|
1719
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1719
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1720
1720
|
*/
|
|
1721
|
-
|
|
1721
|
+
customLowestPriceNet: number;
|
|
1722
1722
|
|
|
1723
1723
|
/**
|
|
1724
|
-
* Niedrigster Netto-Preis der letzten 30 Tage (
|
|
1724
|
+
* Niedrigster Netto-Preis der letzten 30 Tage (vom System ermittelt)
|
|
1725
1725
|
*/
|
|
1726
|
-
|
|
1726
|
+
proposedLowestPriceNet: number;
|
|
1727
1727
|
|
|
1728
1728
|
/**
|
|
1729
1729
|
* der aktuelle listing stand
|
|
@@ -1894,9 +1894,9 @@ export interface ArticleStorage {
|
|
|
1894
1894
|
replenishmentFrom: number;
|
|
1895
1895
|
|
|
1896
1896
|
/**
|
|
1897
|
-
*
|
|
1897
|
+
* Meldebestand
|
|
1898
1898
|
*/
|
|
1899
|
-
|
|
1899
|
+
reorderPoint: number;
|
|
1900
1900
|
|
|
1901
1901
|
/**
|
|
1902
1902
|
* Bestellte Menge
|
|
@@ -1904,19 +1904,19 @@ export interface ArticleStorage {
|
|
|
1904
1904
|
orderedQuantity: number;
|
|
1905
1905
|
|
|
1906
1906
|
/**
|
|
1907
|
-
*
|
|
1907
|
+
* Aktuelle Menge in Kommissionierung
|
|
1908
1908
|
*/
|
|
1909
|
-
|
|
1909
|
+
quantityInPicking: number;
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
|
-
*
|
|
1912
|
+
* Nachschub auf
|
|
1913
1913
|
*/
|
|
1914
|
-
|
|
1914
|
+
replenishmentOn: number;
|
|
1915
1915
|
|
|
1916
1916
|
/**
|
|
1917
|
-
*
|
|
1917
|
+
* Aktueller "virtueller" Bestand (wenn größere Gebinde in dieses aufgelöst werden würden)
|
|
1918
1918
|
*/
|
|
1919
|
-
|
|
1919
|
+
virtualStockAmount: number;
|
|
1920
1920
|
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Reservierte Menge
|
|
@@ -1987,9 +1987,9 @@ export interface ArticleStorage {
|
|
|
1987
1987
|
export interface ArticleSupplier {
|
|
1988
1988
|
|
|
1989
1989
|
/**
|
|
1990
|
-
*
|
|
1990
|
+
* Lieferanten-Meldebestand
|
|
1991
1991
|
*/
|
|
1992
|
-
|
|
1992
|
+
supplierReportingStock: number;
|
|
1993
1993
|
|
|
1994
1994
|
/**
|
|
1995
1995
|
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
@@ -1997,19 +1997,19 @@ export interface ArticleSupplier {
|
|
|
1997
1997
|
useSupplierArticleDescription: boolean;
|
|
1998
1998
|
|
|
1999
1999
|
/**
|
|
2000
|
-
*
|
|
2000
|
+
* Anzeigename des Accounts
|
|
2001
2001
|
*/
|
|
2002
|
-
|
|
2002
|
+
accountDisplayName: string;
|
|
2003
2003
|
|
|
2004
2004
|
/**
|
|
2005
|
-
*
|
|
2005
|
+
* Lieferzeit in (Werk-)Tagen
|
|
2006
2006
|
*/
|
|
2007
|
-
|
|
2007
|
+
deliveryTime: number;
|
|
2008
2008
|
|
|
2009
2009
|
/**
|
|
2010
|
-
*
|
|
2010
|
+
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
2011
2011
|
*/
|
|
2012
|
-
|
|
2012
|
+
useSupplierArticleIdentifier: boolean;
|
|
2013
2013
|
|
|
2014
2014
|
/**
|
|
2015
2015
|
* Soll die abweichende Produktnummer verwendet werden (z.B. in Belegen)
|
|
@@ -2057,14 +2057,14 @@ export interface ArticleSupplier {
|
|
|
2057
2057
|
info: MetaInfo;
|
|
2058
2058
|
|
|
2059
2059
|
/**
|
|
2060
|
-
*
|
|
2060
|
+
* Verpackungseinheit
|
|
2061
2061
|
*/
|
|
2062
|
-
|
|
2062
|
+
packagingUnit: number;
|
|
2063
2063
|
|
|
2064
2064
|
/**
|
|
2065
|
-
*
|
|
2065
|
+
* Referenced Article name
|
|
2066
2066
|
*/
|
|
2067
|
-
|
|
2067
|
+
articleName: string;
|
|
2068
2068
|
|
|
2069
2069
|
/**
|
|
2070
2070
|
* Lieferanten-Preise
|
|
@@ -2112,14 +2112,14 @@ export interface ArticleSupplier {
|
|
|
2112
2112
|
defaultNetPrice: number;
|
|
2113
2113
|
|
|
2114
2114
|
/**
|
|
2115
|
-
*
|
|
2115
|
+
* Einkaufseinheit
|
|
2116
2116
|
*/
|
|
2117
|
-
|
|
2117
|
+
purchaseUnit: number;
|
|
2118
2118
|
|
|
2119
2119
|
/**
|
|
2120
|
-
*
|
|
2120
|
+
* Sollen Baugruppen auf Komponenten-Basis bestellt werden?)
|
|
2121
2121
|
*/
|
|
2122
|
-
|
|
2122
|
+
orderOnComponentBase: boolean;
|
|
2123
2123
|
|
|
2124
2124
|
/**
|
|
2125
2125
|
* Referenced Supplier-Account
|
|
@@ -2334,14 +2334,14 @@ export interface CountryReference {
|
|
|
2334
2334
|
export interface CreateNewDocumentRequest {
|
|
2335
2335
|
|
|
2336
2336
|
/**
|
|
2337
|
-
*
|
|
2337
|
+
* Belegart
|
|
2338
2338
|
*/
|
|
2339
|
-
|
|
2339
|
+
documentTypeLabel: string;
|
|
2340
2340
|
|
|
2341
2341
|
/**
|
|
2342
|
-
* Belegart
|
|
2342
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2343
2343
|
*/
|
|
2344
|
-
|
|
2344
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2345
2345
|
|
|
2346
2346
|
/**
|
|
2347
2347
|
* Details zum Beleg
|
|
@@ -2452,14 +2452,14 @@ export interface CrmActivity {
|
|
|
2452
2452
|
userRef: ApiObjectReference;
|
|
2453
2453
|
|
|
2454
2454
|
/**
|
|
2455
|
-
*
|
|
2455
|
+
* Handelt es sich um eine System-Aktivität?
|
|
2456
2456
|
*/
|
|
2457
|
-
|
|
2457
|
+
system: boolean;
|
|
2458
2458
|
|
|
2459
2459
|
/**
|
|
2460
|
-
*
|
|
2460
|
+
* tatsächliche Startzeit
|
|
2461
2461
|
*/
|
|
2462
|
-
|
|
2462
|
+
startDateTime: ScriptingDateTime;
|
|
2463
2463
|
|
|
2464
2464
|
/**
|
|
2465
2465
|
* Inhalt dieser Aktivität
|
|
@@ -2684,14 +2684,14 @@ export interface CrmDeal {
|
|
|
2684
2684
|
info: MetaInfo;
|
|
2685
2685
|
|
|
2686
2686
|
/**
|
|
2687
|
-
*
|
|
2687
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
2688
2688
|
*/
|
|
2689
|
-
|
|
2689
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
2690
2690
|
|
|
2691
2691
|
/**
|
|
2692
|
-
*
|
|
2692
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
2693
2693
|
*/
|
|
2694
|
-
|
|
2694
|
+
assignedUserRef: ApiObjectReference;
|
|
2695
2695
|
|
|
2696
2696
|
/**
|
|
2697
2697
|
* Chance (in Prozent)
|
|
@@ -2965,14 +2965,14 @@ export interface CrmProject {
|
|
|
2965
2965
|
priorityRef: ApiObjectReference;
|
|
2966
2966
|
|
|
2967
2967
|
/**
|
|
2968
|
-
*
|
|
2968
|
+
* Projektleiter vom Auftragnehmer
|
|
2969
2969
|
*/
|
|
2970
|
-
|
|
2970
|
+
projectManagerOfContractor: CrmParticipant;
|
|
2971
2971
|
|
|
2972
2972
|
/**
|
|
2973
|
-
*
|
|
2973
|
+
* Phase
|
|
2974
2974
|
*/
|
|
2975
|
-
|
|
2975
|
+
phaseRef: ApiObjectReference;
|
|
2976
2976
|
|
|
2977
2977
|
/**
|
|
2978
2978
|
* Aufgaben-Nummer
|
|
@@ -2990,14 +2990,14 @@ export interface CrmProject {
|
|
|
2990
2990
|
billedTimes: number;
|
|
2991
2991
|
|
|
2992
2992
|
/**
|
|
2993
|
-
*
|
|
2993
|
+
* Geplanter Projektzeitraum (von)
|
|
2994
2994
|
*/
|
|
2995
|
-
|
|
2995
|
+
plannedProjectPeriodFrom: ScriptingDate;
|
|
2996
2996
|
|
|
2997
2997
|
/**
|
|
2998
|
-
*
|
|
2998
|
+
* Einkaufsbelege
|
|
2999
2999
|
*/
|
|
3000
|
-
|
|
3000
|
+
purchaseDocumentRefs: Array<DocumentRef>;
|
|
3001
3001
|
|
|
3002
3002
|
/**
|
|
3003
3003
|
* Verkaufsbelege
|
|
@@ -3275,11 +3275,6 @@ export interface CrmSubType {
|
|
|
3275
3275
|
|
|
3276
3276
|
export interface CrmTask {
|
|
3277
3277
|
|
|
3278
|
-
/**
|
|
3279
|
-
* Liste von Erinnerungen
|
|
3280
|
-
*/
|
|
3281
|
-
reminders: Array<CrmReminder>;
|
|
3282
|
-
|
|
3283
3278
|
/**
|
|
3284
3279
|
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3285
3280
|
*/
|
|
@@ -3290,6 +3285,11 @@ export interface CrmTask {
|
|
|
3290
3285
|
*/
|
|
3291
3286
|
customerOfferRef: DocumentRef;
|
|
3292
3287
|
|
|
3288
|
+
/**
|
|
3289
|
+
* Liste von Erinnerungen
|
|
3290
|
+
*/
|
|
3291
|
+
reminders: Array<CrmReminder>;
|
|
3292
|
+
|
|
3293
3293
|
/**
|
|
3294
3294
|
* Notizen
|
|
3295
3295
|
*/
|
|
@@ -3655,14 +3655,14 @@ export interface CurrencyReference {
|
|
|
3655
3655
|
export interface Customer {
|
|
3656
3656
|
|
|
3657
3657
|
/**
|
|
3658
|
-
*
|
|
3658
|
+
* reference to customer group
|
|
3659
3659
|
*/
|
|
3660
|
-
|
|
3660
|
+
customerGroupRef: ApiObjectReference;
|
|
3661
3661
|
|
|
3662
3662
|
/**
|
|
3663
|
-
*
|
|
3663
|
+
* Option für die Stapelverarbeitung
|
|
3664
3664
|
*/
|
|
3665
|
-
|
|
3665
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
3666
3666
|
|
|
3667
3667
|
/**
|
|
3668
3668
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -3680,14 +3680,14 @@ export interface Customer {
|
|
|
3680
3680
|
dueDate: ScriptingDate;
|
|
3681
3681
|
|
|
3682
3682
|
/**
|
|
3683
|
-
*
|
|
3683
|
+
* collective billable
|
|
3684
3684
|
*/
|
|
3685
|
-
|
|
3685
|
+
collectiveBillable: boolean;
|
|
3686
3686
|
|
|
3687
3687
|
/**
|
|
3688
|
-
*
|
|
3688
|
+
* Maximal mögliche Lieferungen
|
|
3689
3689
|
*/
|
|
3690
|
-
|
|
3690
|
+
maxDeliveries: number;
|
|
3691
3691
|
|
|
3692
3692
|
/**
|
|
3693
3693
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -3740,14 +3740,14 @@ export interface Customer {
|
|
|
3740
3740
|
info: MetaInfo;
|
|
3741
3741
|
|
|
3742
3742
|
/**
|
|
3743
|
-
*
|
|
3743
|
+
* reference to the delivery method
|
|
3744
3744
|
*/
|
|
3745
|
-
|
|
3745
|
+
deliveryMethodRef: ApiObjectReference;
|
|
3746
3746
|
|
|
3747
3747
|
/**
|
|
3748
|
-
*
|
|
3748
|
+
* tax able or tax free
|
|
3749
3749
|
*/
|
|
3750
|
-
|
|
3750
|
+
taxable: boolean;
|
|
3751
3751
|
|
|
3752
3752
|
/**
|
|
3753
3753
|
* active true/false
|
|
@@ -3899,14 +3899,14 @@ export const enum DealNotificationEventConfig {
|
|
|
3899
3899
|
export interface DeliveryMethod {
|
|
3900
3900
|
|
|
3901
3901
|
/**
|
|
3902
|
-
*
|
|
3902
|
+
* Soll eine Position mit dieser Liefermethode in einen Lieferbeleg mit dieser Methode übernommen werden
|
|
3903
3903
|
*/
|
|
3904
|
-
|
|
3904
|
+
splitIntoNewDocument: boolean;
|
|
3905
3905
|
|
|
3906
3906
|
/**
|
|
3907
|
-
*
|
|
3907
|
+
* E-Mail an Versender übergeben
|
|
3908
3908
|
*/
|
|
3909
|
-
|
|
3909
|
+
forwardEmailToShipper: boolean;
|
|
3910
3910
|
|
|
3911
3911
|
/**
|
|
3912
3912
|
* Min. Gewicht pro Paket
|
|
@@ -3959,14 +3959,14 @@ export interface DeliveryMethod {
|
|
|
3959
3959
|
defaultSizeUnit: UnitTypeReference;
|
|
3960
3960
|
|
|
3961
3961
|
/**
|
|
3962
|
-
*
|
|
3962
|
+
* translations
|
|
3963
3963
|
*/
|
|
3964
|
-
|
|
3964
|
+
translations: Array<DocumentTypeTerm>;
|
|
3965
3965
|
|
|
3966
3966
|
/**
|
|
3967
|
-
*
|
|
3967
|
+
* Quelle für Paketgewicht
|
|
3968
3968
|
*/
|
|
3969
|
-
|
|
3969
|
+
parcelWeightSource: DeliveryMethodParcelWeightSource;
|
|
3970
3970
|
|
|
3971
3971
|
/**
|
|
3972
3972
|
* Versand-Anbieter
|
|
@@ -4095,14 +4095,14 @@ export interface DeliveryTerm {
|
|
|
4095
4095
|
export interface Document {
|
|
4096
4096
|
|
|
4097
4097
|
/**
|
|
4098
|
-
*
|
|
4098
|
+
* Referenz zum Rechnungskonto
|
|
4099
4099
|
*/
|
|
4100
|
-
|
|
4100
|
+
billingAccountRef: ApiObjectReference;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
|
-
*
|
|
4103
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4104
4104
|
*/
|
|
4105
|
-
|
|
4105
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
4108
|
* Externe Belegnummer
|
|
@@ -4140,14 +4140,14 @@ export interface Document {
|
|
|
4140
4140
|
totalVat: number;
|
|
4141
4141
|
|
|
4142
4142
|
/**
|
|
4143
|
-
*
|
|
4143
|
+
* Standardlager für neue Positionen
|
|
4144
4144
|
*/
|
|
4145
|
-
|
|
4145
|
+
defaultStorageRef: ApiObjectReference;
|
|
4146
4146
|
|
|
4147
4147
|
/**
|
|
4148
|
-
*
|
|
4148
|
+
* Name der bestellenden Person
|
|
4149
4149
|
*/
|
|
4150
|
-
|
|
4150
|
+
orderedBy: string;
|
|
4151
4151
|
|
|
4152
4152
|
/**
|
|
4153
4153
|
* Lieferadresse
|
|
@@ -4278,14 +4278,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4278
4278
|
documentDate: ScriptingDate;
|
|
4279
4279
|
|
|
4280
4280
|
/**
|
|
4281
|
-
*
|
|
4281
|
+
* Endbetragsrundung: Differenz zwischen gerundetem Brutto und (Netto + MwSt)
|
|
4282
4282
|
*/
|
|
4283
|
-
|
|
4283
|
+
roundingAmount: number;
|
|
4284
4284
|
|
|
4285
4285
|
/**
|
|
4286
|
-
*
|
|
4286
|
+
* Reverse-Charge-Verfahren nach §13b UStG?
|
|
4287
4287
|
*/
|
|
4288
|
-
|
|
4288
|
+
taxLiabilityReversed: boolean;
|
|
4289
4289
|
|
|
4290
4290
|
/**
|
|
4291
4291
|
* Versanddatum
|
|
@@ -4298,20 +4298,27 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4298
4298
|
supplierNumber: string;
|
|
4299
4299
|
|
|
4300
4300
|
/**
|
|
4301
|
-
*
|
|
4301
|
+
* Gesamtpreis brutto
|
|
4302
4302
|
*/
|
|
4303
|
-
|
|
4303
|
+
totalGrossPrice: number;
|
|
4304
4304
|
|
|
4305
4305
|
/**
|
|
4306
|
-
*
|
|
4306
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4307
4307
|
*/
|
|
4308
|
-
|
|
4308
|
+
deliveryApproved: boolean;
|
|
4309
4309
|
|
|
4310
4310
|
/**
|
|
4311
4311
|
* Kassen-Zahlungspositionen
|
|
4312
4312
|
*/
|
|
4313
4313
|
posPayments: Array<DocumentPosPayment>;
|
|
4314
4314
|
|
|
4315
|
+
/**
|
|
4316
|
+
* Ist die Quittung bezahlt
|
|
4317
|
+
true wenn die Quittung bezahlt ist
|
|
4318
|
+
|
|
4319
|
+
*/
|
|
4320
|
+
posReceiptPayed: boolean;
|
|
4321
|
+
|
|
4315
4322
|
/**
|
|
4316
4323
|
* Kundennummer beim Lieferanten
|
|
4317
4324
|
*/
|
|
@@ -4322,13 +4329,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4322
4329
|
*/
|
|
4323
4330
|
maxDeliveries: number;
|
|
4324
4331
|
|
|
4325
|
-
/**
|
|
4326
|
-
* Ist die Quittung bezahlt
|
|
4327
|
-
true wenn die Quittung bezahlt ist
|
|
4328
|
-
|
|
4329
|
-
*/
|
|
4330
|
-
posReceiptPayed: boolean;
|
|
4331
|
-
|
|
4332
4332
|
/**
|
|
4333
4333
|
* Quittung: Summe Zahlbetrag
|
|
4334
4334
|
*/
|
|
@@ -4350,14 +4350,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4350
4350
|
contractDetail: DocumentContractDetail;
|
|
4351
4351
|
|
|
4352
4352
|
/**
|
|
4353
|
-
*
|
|
4353
|
+
* Skontofähiger Bruttogesamtbetrag
|
|
4354
4354
|
*/
|
|
4355
|
-
|
|
4355
|
+
cashDiscountableTotalGrossPrice: number;
|
|
4356
4356
|
|
|
4357
4357
|
/**
|
|
4358
|
-
*
|
|
4358
|
+
* Zahlungsplan vorhanden?
|
|
4359
4359
|
*/
|
|
4360
|
-
|
|
4360
|
+
paymentPlan: boolean;
|
|
4361
4361
|
|
|
4362
4362
|
/**
|
|
4363
4363
|
* Produktionsdetails
|
|
@@ -4375,14 +4375,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4375
4375
|
accountNumber: string;
|
|
4376
4376
|
|
|
4377
4377
|
/**
|
|
4378
|
-
*
|
|
4378
|
+
* Referenz auf Zahlungsbedingung
|
|
4379
4379
|
*/
|
|
4380
|
-
|
|
4380
|
+
paymentTermRef: PaymentTermRef;
|
|
4381
4381
|
|
|
4382
4382
|
/**
|
|
4383
|
-
*
|
|
4383
|
+
* Wird vom Workflow verarbeitet?
|
|
4384
4384
|
*/
|
|
4385
|
-
|
|
4385
|
+
processedByWorkflow: boolean;
|
|
4386
4386
|
|
|
4387
4387
|
/**
|
|
4388
4388
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4450,14 +4450,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4450
4450
|
additionalInfo: DocumentAdditionalInfo;
|
|
4451
4451
|
|
|
4452
4452
|
/**
|
|
4453
|
-
*
|
|
4453
|
+
* Bestelldatum
|
|
4454
4454
|
*/
|
|
4455
|
-
|
|
4455
|
+
orderedOn: ScriptingDate;
|
|
4456
4456
|
|
|
4457
4457
|
/**
|
|
4458
|
-
*
|
|
4458
|
+
* skontierbarer Rechnungsbetrag Basiswährung
|
|
4459
4459
|
*/
|
|
4460
|
-
|
|
4460
|
+
baseCashDiscountableTotalGrossPrice: number;
|
|
4461
4461
|
|
|
4462
4462
|
/**
|
|
4463
4463
|
* MetaInformations for this Object
|
|
@@ -4480,14 +4480,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4480
4480
|
dropShipping: boolean;
|
|
4481
4481
|
|
|
4482
4482
|
/**
|
|
4483
|
-
*
|
|
4483
|
+
* Gesamtpreis netto
|
|
4484
4484
|
*/
|
|
4485
|
-
|
|
4485
|
+
totalNetPrice: number;
|
|
4486
4486
|
|
|
4487
4487
|
/**
|
|
4488
|
-
*
|
|
4488
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4489
4489
|
*/
|
|
4490
|
-
|
|
4490
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4491
4491
|
|
|
4492
4492
|
/**
|
|
4493
4493
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4595,14 +4595,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4595
4595
|
customerNumber: string;
|
|
4596
4596
|
|
|
4597
4597
|
/**
|
|
4598
|
-
*
|
|
4598
|
+
* Umsatzsteuer-Identifikationsnummer
|
|
4599
4599
|
*/
|
|
4600
|
-
|
|
4600
|
+
taxIdentificationNumber: string;
|
|
4601
4601
|
|
|
4602
4602
|
/**
|
|
4603
|
-
*
|
|
4603
|
+
* Statusinstanz des Belegs
|
|
4604
4604
|
*/
|
|
4605
|
-
|
|
4605
|
+
documentState: DocumentTypeState;
|
|
4606
4606
|
|
|
4607
4607
|
/**
|
|
4608
4608
|
* Versandkostenpositionen
|
|
@@ -4647,14 +4647,14 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4647
4647
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
4648
4648
|
|
|
4649
4649
|
/**
|
|
4650
|
-
*
|
|
4650
|
+
* Rechnungsadresse
|
|
4651
4651
|
*/
|
|
4652
|
-
|
|
4652
|
+
billingAddress: DocumentAddress;
|
|
4653
4653
|
|
|
4654
4654
|
/**
|
|
4655
|
-
*
|
|
4655
|
+
* Status der USt-ID-Prüfung
|
|
4656
4656
|
*/
|
|
4657
|
-
|
|
4657
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
4658
4658
|
|
|
4659
4659
|
/**
|
|
4660
4660
|
* Report-Gruppe, falls vom Standard abweichend
|
|
@@ -4820,14 +4820,14 @@ export interface DocumentAddress {
|
|
|
4820
4820
|
postOfficeBox: string;
|
|
4821
4821
|
|
|
4822
4822
|
/**
|
|
4823
|
-
*
|
|
4823
|
+
* country code IsoAlpha3
|
|
4824
4824
|
*/
|
|
4825
|
-
|
|
4825
|
+
countryCode: string;
|
|
4826
4826
|
|
|
4827
4827
|
/**
|
|
4828
|
-
*
|
|
4828
|
+
* Street
|
|
4829
4829
|
*/
|
|
4830
|
-
|
|
4830
|
+
street: string;
|
|
4831
4831
|
|
|
4832
4832
|
/**
|
|
4833
4833
|
* Unique identifier of the Object
|
|
@@ -4845,14 +4845,14 @@ export interface DocumentAddress {
|
|
|
4845
4845
|
info: MetaInfo;
|
|
4846
4846
|
|
|
4847
4847
|
/**
|
|
4848
|
-
*
|
|
4848
|
+
* Lieferart
|
|
4849
4849
|
*/
|
|
4850
|
-
|
|
4850
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4851
4851
|
|
|
4852
4852
|
/**
|
|
4853
|
-
*
|
|
4853
|
+
* GLN
|
|
4854
4854
|
*/
|
|
4855
|
-
|
|
4855
|
+
globalLocationNumber: string;
|
|
4856
4856
|
|
|
4857
4857
|
/**
|
|
4858
4858
|
* Postcode
|
|
@@ -5033,14 +5033,14 @@ export interface DocumentContractDetail {
|
|
|
5033
5033
|
runtimeToDate: ScriptingDate;
|
|
5034
5034
|
|
|
5035
5035
|
/**
|
|
5036
|
-
*
|
|
5036
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5037
5037
|
*/
|
|
5038
|
-
|
|
5038
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5039
5039
|
|
|
5040
5040
|
/**
|
|
5041
|
-
*
|
|
5041
|
+
* Nächste Fälligkeit
|
|
5042
5042
|
*/
|
|
5043
|
-
|
|
5043
|
+
nextDueDate: ScriptingDate;
|
|
5044
5044
|
|
|
5045
5045
|
/**
|
|
5046
5046
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5205,14 +5205,14 @@ export const enum DocumentImportType {
|
|
|
5205
5205
|
export interface DocumentLine {
|
|
5206
5206
|
|
|
5207
5207
|
/**
|
|
5208
|
-
*
|
|
5208
|
+
* Zolltarifnummer
|
|
5209
5209
|
*/
|
|
5210
|
-
|
|
5210
|
+
customsTariffNumber: string;
|
|
5211
5211
|
|
|
5212
5212
|
/**
|
|
5213
|
-
*
|
|
5213
|
+
* Leistungsdatum
|
|
5214
5214
|
*/
|
|
5215
|
-
|
|
5215
|
+
performanceDate: ScriptingDate;
|
|
5216
5216
|
|
|
5217
5217
|
/**
|
|
5218
5218
|
* Land der Herkunft
|
|
@@ -5220,14 +5220,14 @@ export interface DocumentLine {
|
|
|
5220
5220
|
country: CountryReference;
|
|
5221
5221
|
|
|
5222
5222
|
/**
|
|
5223
|
-
*
|
|
5223
|
+
* wurde aufgelöst in Gebindeartikel
|
|
5224
5224
|
*/
|
|
5225
|
-
|
|
5225
|
+
convertedIntoBundleArticleRef: ApiObjectReference;
|
|
5226
5226
|
|
|
5227
5227
|
/**
|
|
5228
|
-
*
|
|
5228
|
+
* bestätigtes Ende des Lieferzeitraums (nur notwendig für Lieferrzeiträume, wenn Lieferdatum gesetzt)
|
|
5229
5229
|
*/
|
|
5230
|
-
|
|
5230
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
5231
5231
|
|
|
5232
5232
|
/**
|
|
5233
5233
|
* verarbeitete Menge
|
|
@@ -5275,14 +5275,14 @@ export interface DocumentLine {
|
|
|
5275
5275
|
number: string;
|
|
5276
5276
|
|
|
5277
5277
|
/**
|
|
5278
|
-
*
|
|
5278
|
+
* Referenz zur Kundenauftragszeile
|
|
5279
5279
|
*/
|
|
5280
|
-
|
|
5280
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5281
5281
|
|
|
5282
5282
|
/**
|
|
5283
|
-
*
|
|
5283
|
+
* Gesamtbruttogewicht
|
|
5284
5284
|
*/
|
|
5285
|
-
|
|
5285
|
+
totalGrossWeight: number;
|
|
5286
5286
|
|
|
5287
5287
|
/**
|
|
5288
5288
|
* skontierbare Position?
|
|
@@ -5305,14 +5305,14 @@ export interface DocumentLine {
|
|
|
5305
5305
|
financeBooking: DocumentFinanceBooking;
|
|
5306
5306
|
|
|
5307
5307
|
/**
|
|
5308
|
-
*
|
|
5308
|
+
* Positionstyp
|
|
5309
5309
|
*/
|
|
5310
|
-
|
|
5310
|
+
lineType: DocumentLineType;
|
|
5311
5311
|
|
|
5312
5312
|
/**
|
|
5313
|
-
*
|
|
5313
|
+
* Gesamtpreis Position in Basiswährung
|
|
5314
5314
|
*/
|
|
5315
|
-
|
|
5315
|
+
baseTotalLinePrice: number;
|
|
5316
5316
|
|
|
5317
5317
|
/**
|
|
5318
5318
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5345,9 +5345,9 @@ export interface DocumentLine {
|
|
|
5345
5345
|
id: number;
|
|
5346
5346
|
|
|
5347
5347
|
/**
|
|
5348
|
-
*
|
|
5348
|
+
* Externe Referenz zum VDS-Paket
|
|
5349
5349
|
*/
|
|
5350
|
-
|
|
5350
|
+
externalReferenceVds: string;
|
|
5351
5351
|
|
|
5352
5352
|
/**
|
|
5353
5353
|
* Positionsnummer über alle Artikelpositionen hinweg
|
|
@@ -5355,14 +5355,14 @@ export interface DocumentLine {
|
|
|
5355
5355
|
positionOfArticleLine: number;
|
|
5356
5356
|
|
|
5357
5357
|
/**
|
|
5358
|
-
*
|
|
5358
|
+
* Preis pro Einheit in Basiswährung
|
|
5359
5359
|
*/
|
|
5360
|
-
|
|
5360
|
+
basePrice: number;
|
|
5361
5361
|
|
|
5362
5362
|
/**
|
|
5363
|
-
*
|
|
5363
|
+
* Serientyp
|
|
5364
5364
|
*/
|
|
5365
|
-
|
|
5365
|
+
serialType: ArticleSerialType;
|
|
5366
5366
|
|
|
5367
5367
|
/**
|
|
5368
5368
|
* MetaInformations for this Object
|
|
@@ -5500,14 +5500,14 @@ export interface DocumentLine {
|
|
|
5500
5500
|
sourceLineRef: DocumentLineRef;
|
|
5501
5501
|
|
|
5502
5502
|
/**
|
|
5503
|
-
*
|
|
5503
|
+
* Preisherkunft
|
|
5504
5504
|
*/
|
|
5505
|
-
|
|
5505
|
+
priceOrigin: ProductPriceOrigin;
|
|
5506
5506
|
|
|
5507
5507
|
/**
|
|
5508
|
-
*
|
|
5508
|
+
* Referenz zum Lager
|
|
5509
5509
|
*/
|
|
5510
|
-
|
|
5510
|
+
storage: ApiObjectReference;
|
|
5511
5511
|
|
|
5512
5512
|
/**
|
|
5513
5513
|
* Preisermittlungskriterien
|
|
@@ -5530,14 +5530,14 @@ export interface DocumentLine {
|
|
|
5530
5530
|
unitType: UnitTypeReference;
|
|
5531
5531
|
|
|
5532
5532
|
/**
|
|
5533
|
-
*
|
|
5533
|
+
* Referenz zur Basiszeile
|
|
5534
5534
|
*/
|
|
5535
|
-
|
|
5535
|
+
baseLineId: number;
|
|
5536
5536
|
|
|
5537
5537
|
/**
|
|
5538
|
-
*
|
|
5538
|
+
* Zubehör Einfügeart
|
|
5539
5539
|
*/
|
|
5540
|
-
|
|
5540
|
+
insertTerm: AccessoryInsertTerm;
|
|
5541
5541
|
|
|
5542
5542
|
/**
|
|
5543
5543
|
* Einheit Bruttogewicht
|
|
@@ -5565,14 +5565,14 @@ export interface DocumentLine {
|
|
|
5565
5565
|
productType: ProductType;
|
|
5566
5566
|
|
|
5567
5567
|
/**
|
|
5568
|
-
*
|
|
5568
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5569
5569
|
*/
|
|
5570
|
-
|
|
5570
|
+
baseSalesValueNet: number;
|
|
5571
5571
|
|
|
5572
5572
|
/**
|
|
5573
|
-
*
|
|
5573
|
+
* Vertragsinformationen
|
|
5574
5574
|
*/
|
|
5575
|
-
|
|
5575
|
+
contractDetail: DocumentContractDetail;
|
|
5576
5576
|
|
|
5577
5577
|
/**
|
|
5578
5578
|
* Einheit Nettogewicht
|
|
@@ -6016,14 +6016,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6016
6016
|
quantityFinished: number;
|
|
6017
6017
|
|
|
6018
6018
|
/**
|
|
6019
|
-
*
|
|
6019
|
+
* Menge defekt
|
|
6020
6020
|
*/
|
|
6021
|
-
|
|
6021
|
+
quantityDefective: number;
|
|
6022
6022
|
|
|
6023
6023
|
/**
|
|
6024
|
-
*
|
|
6024
|
+
* Produzierte Seriennummern
|
|
6025
6025
|
*/
|
|
6026
|
-
|
|
6026
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6027
6027
|
|
|
6028
6028
|
/**
|
|
6029
6029
|
* Freifeld
|
|
@@ -6543,14 +6543,14 @@ export const enum DocumentRounding {
|
|
|
6543
6543
|
export interface DocumentShippingCost {
|
|
6544
6544
|
|
|
6545
6545
|
/**
|
|
6546
|
-
*
|
|
6546
|
+
* Die Versandkosten
|
|
6547
6547
|
*/
|
|
6548
|
-
|
|
6548
|
+
costs: number;
|
|
6549
6549
|
|
|
6550
6550
|
/**
|
|
6551
|
-
*
|
|
6551
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6552
6552
|
*/
|
|
6553
|
-
|
|
6553
|
+
manualCosts: boolean;
|
|
6554
6554
|
|
|
6555
6555
|
/**
|
|
6556
6556
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6678,14 +6678,14 @@ export interface DocumentText {
|
|
|
6678
6678
|
transferableIntoSubsequentDocuments: boolean;
|
|
6679
6679
|
|
|
6680
6680
|
/**
|
|
6681
|
-
*
|
|
6681
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6682
6682
|
*/
|
|
6683
|
-
|
|
6683
|
+
deleted: boolean;
|
|
6684
6684
|
|
|
6685
6685
|
/**
|
|
6686
|
-
*
|
|
6686
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6687
6687
|
*/
|
|
6688
|
-
|
|
6688
|
+
textPosition: TextPosition;
|
|
6689
6689
|
|
|
6690
6690
|
/**
|
|
6691
6691
|
* textBaustein Vorlage
|
|
@@ -6983,14 +6983,14 @@ export const enum DropShippingPolicy {
|
|
|
6983
6983
|
export interface DummySerialNumberStockTransferApi {
|
|
6984
6984
|
|
|
6985
6985
|
/**
|
|
6986
|
-
*
|
|
6986
|
+
* Seriennummer
|
|
6987
6987
|
*/
|
|
6988
|
-
|
|
6988
|
+
serialNumberId: number;
|
|
6989
6989
|
|
|
6990
6990
|
/**
|
|
6991
|
-
*
|
|
6991
|
+
* Ziel-Lager
|
|
6992
6992
|
*/
|
|
6993
|
-
|
|
6993
|
+
targetStorageId: number;
|
|
6994
6994
|
|
|
6995
6995
|
/**
|
|
6996
6996
|
* Bemerkung
|
|
@@ -7370,14 +7370,14 @@ export interface FabricationRevertRequest {
|
|
|
7370
7370
|
export interface FabricationSerialNumber {
|
|
7371
7371
|
|
|
7372
7372
|
/**
|
|
7373
|
-
*
|
|
7373
|
+
* ID der zu produzierenden Seriennummer (nur zur gezielten Produktion von bereits definierten Seriennummern)
|
|
7374
7374
|
*/
|
|
7375
|
-
|
|
7375
|
+
serialNumberId: number;
|
|
7376
7376
|
|
|
7377
7377
|
/**
|
|
7378
|
-
*
|
|
7378
|
+
* MHD / Verfallsdatum
|
|
7379
7379
|
*/
|
|
7380
|
-
|
|
7380
|
+
expiryDate: ScriptingDate;
|
|
7381
7381
|
|
|
7382
7382
|
/**
|
|
7383
7383
|
* Bemerkung
|
|
@@ -7626,26 +7626,26 @@ export interface PaymentTerm {
|
|
|
7626
7626
|
*/
|
|
7627
7627
|
paymentDiscount2: number;
|
|
7628
7628
|
|
|
7629
|
-
/**
|
|
7630
|
-
* Percent for Discount 1
|
|
7631
|
-
*/
|
|
7632
|
-
paymentDiscount1: number;
|
|
7633
|
-
|
|
7634
7629
|
/**
|
|
7635
7630
|
* printDescription
|
|
7636
7631
|
*/
|
|
7637
7632
|
printDescription: string;
|
|
7638
7633
|
|
|
7639
7634
|
/**
|
|
7640
|
-
*
|
|
7635
|
+
* Percent for Discount 1
|
|
7641
7636
|
*/
|
|
7642
|
-
|
|
7637
|
+
paymentDiscount1: number;
|
|
7643
7638
|
|
|
7644
7639
|
/**
|
|
7645
7640
|
* for deposit: remaining term
|
|
7646
7641
|
*/
|
|
7647
7642
|
remainingTermRef: ApiObjectReference;
|
|
7648
7643
|
|
|
7644
|
+
/**
|
|
7645
|
+
* Days for Discount 1
|
|
7646
|
+
*/
|
|
7647
|
+
paymentDays1: number;
|
|
7648
|
+
|
|
7649
7649
|
/**
|
|
7650
7650
|
* Days for Discount 2
|
|
7651
7651
|
*/
|
|
@@ -7765,14 +7765,14 @@ export interface PickTrolley {
|
|
|
7765
7765
|
pickTrolleyBoxes: Array<PickTrolleyBox>;
|
|
7766
7766
|
|
|
7767
7767
|
/**
|
|
7768
|
-
*
|
|
7768
|
+
* Lagerplatz, dem dieser Pickwagen zugeordnet ist
|
|
7769
7769
|
*/
|
|
7770
|
-
|
|
7770
|
+
storageBinRef: StorageBinRef;
|
|
7771
7771
|
|
|
7772
7772
|
/**
|
|
7773
|
-
*
|
|
7773
|
+
* Bearbeiter der Pickliste
|
|
7774
7774
|
*/
|
|
7775
|
-
|
|
7775
|
+
processedByUserRef: ApiObjectReference;
|
|
7776
7776
|
|
|
7777
7777
|
/**
|
|
7778
7778
|
* Beschreibung des Wagens
|
|
@@ -7927,14 +7927,14 @@ export const enum PickingType {
|
|
|
7927
7927
|
export interface Picklist {
|
|
7928
7928
|
|
|
7929
7929
|
/**
|
|
7930
|
-
*
|
|
7930
|
+
* Ziellager für Nachschub
|
|
7931
7931
|
*/
|
|
7932
|
-
|
|
7932
|
+
targetStorageRef: ApiObjectReference;
|
|
7933
7933
|
|
|
7934
7934
|
/**
|
|
7935
|
-
*
|
|
7935
|
+
* Zur Erstellung der Pickliste verwendete Vorlage
|
|
7936
7936
|
*/
|
|
7937
|
-
|
|
7937
|
+
usedTemplate: PicklistTemplate;
|
|
7938
7938
|
|
|
7939
7939
|
/**
|
|
7940
7940
|
* Nummer der Pickliste
|
|
@@ -8045,14 +8045,14 @@ export interface PicklistLine {
|
|
|
8045
8045
|
articleNumber: string;
|
|
8046
8046
|
|
|
8047
8047
|
/**
|
|
8048
|
-
*
|
|
8048
|
+
* Art der Position
|
|
8049
8049
|
*/
|
|
8050
|
-
|
|
8050
|
+
lineType: PicklistLineType;
|
|
8051
8051
|
|
|
8052
8052
|
/**
|
|
8053
|
-
*
|
|
8053
|
+
* Lagernummer
|
|
8054
8054
|
*/
|
|
8055
|
-
|
|
8055
|
+
storageNumber: string;
|
|
8056
8056
|
|
|
8057
8057
|
/**
|
|
8058
8058
|
* ID der Ziel-Dokumentposition
|
|
@@ -8377,9 +8377,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8377
8377
|
maxOrderValue: number;
|
|
8378
8378
|
|
|
8379
8379
|
/**
|
|
8380
|
-
* Nur
|
|
8380
|
+
* Nur vollständig lieferbare Positionen
|
|
8381
8381
|
*/
|
|
8382
|
-
|
|
8382
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
8383
8383
|
|
|
8384
8384
|
/**
|
|
8385
8385
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -8387,9 +8387,9 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
8387
8387
|
deliveryDateRange: PicklistTemplate$DateRange;
|
|
8388
8388
|
|
|
8389
8389
|
/**
|
|
8390
|
-
* Nur
|
|
8390
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
8391
8391
|
*/
|
|
8392
|
-
|
|
8392
|
+
maxOrderCount: number;
|
|
8393
8393
|
|
|
8394
8394
|
/**
|
|
8395
8395
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -8454,15 +8454,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8454
8454
|
*/
|
|
8455
8455
|
printPicklist: boolean;
|
|
8456
8456
|
|
|
8457
|
+
/**
|
|
8458
|
+
* Maximale Anzahl an Positionen einer Pickliste
|
|
8459
|
+
*/
|
|
8460
|
+
maxPicklistLineCount: number;
|
|
8461
|
+
|
|
8457
8462
|
/**
|
|
8458
8463
|
* Die zu verwendende Pickwagengruppe
|
|
8459
8464
|
*/
|
|
8460
8465
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
8461
8466
|
|
|
8462
8467
|
/**
|
|
8463
|
-
*
|
|
8468
|
+
* Lagerplätze vorgeben
|
|
8464
8469
|
*/
|
|
8465
|
-
|
|
8470
|
+
specifyStorageBins: boolean;
|
|
8466
8471
|
|
|
8467
8472
|
/**
|
|
8468
8473
|
* Der zu verwendende Pickwagen
|
|
@@ -8474,11 +8479,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
8474
8479
|
*/
|
|
8475
8480
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
8476
8481
|
|
|
8477
|
-
/**
|
|
8478
|
-
* Lagerplätze vorgeben
|
|
8479
|
-
*/
|
|
8480
|
-
specifyStorageBins: boolean;
|
|
8481
|
-
|
|
8482
8482
|
/**
|
|
8483
8483
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
8484
8484
|
*/
|
|
@@ -8547,11 +8547,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8547
8547
|
*/
|
|
8548
8548
|
showShippingFormOnPickingFinish: boolean;
|
|
8549
8549
|
|
|
8550
|
-
/**
|
|
8551
|
-
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8552
|
-
*/
|
|
8553
|
-
useDigitalPicklist: boolean;
|
|
8554
|
-
|
|
8555
8550
|
/**
|
|
8556
8551
|
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
8557
8552
|
*/
|
|
@@ -8562,6 +8557,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8562
8557
|
*/
|
|
8563
8558
|
allowPickingOfServiceArticles: boolean;
|
|
8564
8559
|
|
|
8560
|
+
/**
|
|
8561
|
+
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
8562
|
+
*/
|
|
8563
|
+
useDigitalPicklist: boolean;
|
|
8564
|
+
|
|
8565
8565
|
/**
|
|
8566
8566
|
* Sammelbestätigung erlauben
|
|
8567
8567
|
*/
|
|
@@ -8582,26 +8582,26 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
8582
8582
|
*/
|
|
8583
8583
|
printLabelOnCompleteOrder: boolean;
|
|
8584
8584
|
|
|
8585
|
-
/**
|
|
8586
|
-
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
8587
|
-
*/
|
|
8588
|
-
printLabelAfterPicking: boolean;
|
|
8589
|
-
|
|
8590
8585
|
/**
|
|
8591
8586
|
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
8592
8587
|
*/
|
|
8593
8588
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
8594
8589
|
|
|
8595
8590
|
/**
|
|
8596
|
-
* Sollen
|
|
8591
|
+
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
8597
8592
|
*/
|
|
8598
|
-
|
|
8593
|
+
printLabelAfterPicking: boolean;
|
|
8599
8594
|
|
|
8600
8595
|
/**
|
|
8601
8596
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
8602
8597
|
*/
|
|
8603
8598
|
autoDeterminationOfLots: boolean;
|
|
8604
8599
|
|
|
8600
|
+
/**
|
|
8601
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
8602
|
+
*/
|
|
8603
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
8604
|
+
|
|
8605
8605
|
/**
|
|
8606
8606
|
* Zielmengen in Masken verstecken?
|
|
8607
8607
|
*/
|
|
@@ -8676,14 +8676,14 @@ export interface PriceSelectionCriteria {
|
|
|
8676
8676
|
quantity: number;
|
|
8677
8677
|
|
|
8678
8678
|
/**
|
|
8679
|
-
* Liste von
|
|
8679
|
+
* Liste von Artikel-IDs
|
|
8680
8680
|
*/
|
|
8681
|
-
|
|
8681
|
+
articleIds: Array<number>;
|
|
8682
8682
|
|
|
8683
8683
|
/**
|
|
8684
|
-
* Liste von
|
|
8684
|
+
* Liste von Account-IDs
|
|
8685
8685
|
*/
|
|
8686
|
-
|
|
8686
|
+
accountIds: Array<number>;
|
|
8687
8687
|
|
|
8688
8688
|
/**
|
|
8689
8689
|
* ein qualifier
|
|
@@ -8935,14 +8935,14 @@ export interface ProductDiscount {
|
|
|
8935
8935
|
modifierValueType: ValueType;
|
|
8936
8936
|
|
|
8937
8937
|
/**
|
|
8938
|
-
*
|
|
8938
|
+
* Account, für den der Rabatt gültig ist
|
|
8939
8939
|
*/
|
|
8940
|
-
|
|
8940
|
+
accountRef: ApiObjectReference;
|
|
8941
8941
|
|
|
8942
8942
|
/**
|
|
8943
|
-
*
|
|
8943
|
+
* Name des Rabatts
|
|
8944
8944
|
*/
|
|
8945
|
-
|
|
8945
|
+
modifierName: string;
|
|
8946
8946
|
|
|
8947
8947
|
/**
|
|
8948
8948
|
* Unique identifier of the Object
|
|
@@ -9247,15 +9247,20 @@ export const enum RegulationSet {
|
|
|
9247
9247
|
|
|
9248
9248
|
export interface RequestDocument {
|
|
9249
9249
|
|
|
9250
|
+
/**
|
|
9251
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
9252
|
+
*/
|
|
9253
|
+
incomingGoodsStorageBinId: number;
|
|
9254
|
+
|
|
9250
9255
|
/**
|
|
9251
9256
|
* Belegdatum
|
|
9252
9257
|
*/
|
|
9253
9258
|
documentDate: ScriptingDate;
|
|
9254
9259
|
|
|
9255
9260
|
/**
|
|
9256
|
-
* ID
|
|
9261
|
+
* ID der Kassenschublade (bei POS)
|
|
9257
9262
|
*/
|
|
9258
|
-
|
|
9263
|
+
cashDrawerId: number;
|
|
9259
9264
|
|
|
9260
9265
|
/**
|
|
9261
9266
|
* Der Anzahlungsbetrag
|
|
@@ -9267,11 +9272,6 @@ export interface RequestDocument {
|
|
|
9267
9272
|
*/
|
|
9268
9273
|
performanceDate: ScriptingDate;
|
|
9269
9274
|
|
|
9270
|
-
/**
|
|
9271
|
-
* ID der Kassenschublade (bei POS)
|
|
9272
|
-
*/
|
|
9273
|
-
cashDrawerId: number;
|
|
9274
|
-
|
|
9275
9275
|
/**
|
|
9276
9276
|
* Für interne Zwecke: Liefermethode für das Document
|
|
9277
9277
|
*/
|
|
@@ -9338,14 +9338,14 @@ export interface RequestDocument {
|
|
|
9338
9338
|
posRegisterId: number;
|
|
9339
9339
|
|
|
9340
9340
|
/**
|
|
9341
|
-
*
|
|
9341
|
+
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
9342
9342
|
*/
|
|
9343
|
-
|
|
9343
|
+
supplierAccountId: number;
|
|
9344
9344
|
|
|
9345
9345
|
/**
|
|
9346
|
-
*
|
|
9346
|
+
* Für interne Zwecke: Zahlungsbedingung für das Document
|
|
9347
9347
|
*/
|
|
9348
|
-
|
|
9348
|
+
paymentTermId: number;
|
|
9349
9349
|
|
|
9350
9350
|
/**
|
|
9351
9351
|
* Für interne Zwecke: Vorgabe Streckengeschäft
|
|
@@ -9426,14 +9426,14 @@ export interface RequestDocumentLine {
|
|
|
9426
9426
|
description: string;
|
|
9427
9427
|
|
|
9428
9428
|
/**
|
|
9429
|
-
*
|
|
9429
|
+
* Herkunft des Preises
|
|
9430
9430
|
*/
|
|
9431
|
-
|
|
9431
|
+
priceOrigin: ProductPriceOrigin;
|
|
9432
9432
|
|
|
9433
9433
|
/**
|
|
9434
|
-
*
|
|
9434
|
+
* Quittungsdetails zur Belegposition
|
|
9435
9435
|
*/
|
|
9436
|
-
|
|
9436
|
+
posDetail: DocumentLinePosDetail;
|
|
9437
9437
|
|
|
9438
9438
|
/**
|
|
9439
9439
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -9561,14 +9561,14 @@ export interface RequestDocumentLine {
|
|
|
9561
9561
|
externalArticleNumber: string;
|
|
9562
9562
|
|
|
9563
9563
|
/**
|
|
9564
|
-
*
|
|
9564
|
+
* Buchungen zu dieser Belegposition
|
|
9565
9565
|
*/
|
|
9566
|
-
|
|
9566
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
9567
9567
|
|
|
9568
9568
|
/**
|
|
9569
|
-
*
|
|
9569
|
+
* ID der Quell-Belegposition
|
|
9570
9570
|
*/
|
|
9571
|
-
|
|
9571
|
+
sourceLineId: number;
|
|
9572
9572
|
|
|
9573
9573
|
/**
|
|
9574
9574
|
* (optional) Preis des Artikels dieser Position
|
|
@@ -9735,14 +9735,14 @@ export interface SalesAgent {
|
|
|
9735
9735
|
note: string;
|
|
9736
9736
|
|
|
9737
9737
|
/**
|
|
9738
|
-
*
|
|
9738
|
+
* reference to the delivery method
|
|
9739
9739
|
*/
|
|
9740
|
-
|
|
9740
|
+
deliveryMethodRef: ApiObjectReference;
|
|
9741
9741
|
|
|
9742
9742
|
/**
|
|
9743
|
-
*
|
|
9743
|
+
* is sales agent taxable
|
|
9744
9744
|
*/
|
|
9745
|
-
|
|
9745
|
+
taxable: boolean;
|
|
9746
9746
|
|
|
9747
9747
|
/**
|
|
9748
9748
|
* Freifelder
|
|
@@ -10202,14 +10202,14 @@ export interface ShelfDocument {
|
|
|
10202
10202
|
tags: Array<TagDto>;
|
|
10203
10203
|
|
|
10204
10204
|
/**
|
|
10205
|
-
*
|
|
10205
|
+
* share informations
|
|
10206
10206
|
*/
|
|
10207
|
-
|
|
10207
|
+
shares: Array<ShelfShare>;
|
|
10208
10208
|
|
|
10209
10209
|
/**
|
|
10210
|
-
*
|
|
10210
|
+
* Mehrsprachige Bezeichnungen
|
|
10211
10211
|
*/
|
|
10212
|
-
|
|
10212
|
+
translatableTexts: Array<ShelfTranslatableText>;
|
|
10213
10213
|
|
|
10214
10214
|
/**
|
|
10215
10215
|
* Automatische Löschung ab
|
|
@@ -10285,14 +10285,14 @@ export interface ShelfDocumentAttribution {
|
|
|
10285
10285
|
shelfResourceId: number;
|
|
10286
10286
|
|
|
10287
10287
|
/**
|
|
10288
|
-
*
|
|
10288
|
+
* Verfügbare Transformationen zum Bild
|
|
10289
10289
|
*/
|
|
10290
|
-
|
|
10290
|
+
transformationKeys: Array<string>;
|
|
10291
10291
|
|
|
10292
10292
|
/**
|
|
10293
|
-
*
|
|
10293
|
+
* id of the referenced object
|
|
10294
10294
|
*/
|
|
10295
|
-
|
|
10295
|
+
refId: number;
|
|
10296
10296
|
|
|
10297
10297
|
/**
|
|
10298
10298
|
* Unique identifier of the Object
|
|
@@ -10699,14 +10699,14 @@ export interface StockMovementManualApi {
|
|
|
10699
10699
|
export interface StockTransferApi {
|
|
10700
10700
|
|
|
10701
10701
|
/**
|
|
10702
|
-
*
|
|
10702
|
+
* Seriennummer
|
|
10703
10703
|
*/
|
|
10704
|
-
|
|
10704
|
+
serialNumberId: number;
|
|
10705
10705
|
|
|
10706
10706
|
/**
|
|
10707
|
-
*
|
|
10707
|
+
* Ziel-Lager
|
|
10708
10708
|
*/
|
|
10709
|
-
|
|
10709
|
+
targetStorageId: number;
|
|
10710
10710
|
|
|
10711
10711
|
/**
|
|
10712
10712
|
* Bemerkung
|
|
@@ -10915,6 +10915,11 @@ export interface Supplier {
|
|
|
10915
10915
|
*/
|
|
10916
10916
|
info: MetaInfo;
|
|
10917
10917
|
|
|
10918
|
+
/**
|
|
10919
|
+
* reference to the delivery method
|
|
10920
|
+
*/
|
|
10921
|
+
deliveryMethodRef: ApiObjectReference;
|
|
10922
|
+
|
|
10918
10923
|
/**
|
|
10919
10924
|
* Lieferantengruppe
|
|
10920
10925
|
*/
|
|
@@ -10925,11 +10930,6 @@ export interface Supplier {
|
|
|
10925
10930
|
*/
|
|
10926
10931
|
taxable: boolean;
|
|
10927
10932
|
|
|
10928
|
-
/**
|
|
10929
|
-
* reference to the delivery method
|
|
10930
|
-
*/
|
|
10931
|
-
deliveryMethodRef: ApiObjectReference;
|
|
10932
|
-
|
|
10933
10933
|
/**
|
|
10934
10934
|
* Mahnen?
|
|
10935
10935
|
*/
|
|
@@ -11348,14 +11348,14 @@ export interface User {
|
|
|
11348
11348
|
version: number;
|
|
11349
11349
|
|
|
11350
11350
|
/**
|
|
11351
|
-
*
|
|
11351
|
+
* is the email verified
|
|
11352
11352
|
*/
|
|
11353
|
-
|
|
11353
|
+
emailVerified: boolean;
|
|
11354
11354
|
|
|
11355
11355
|
/**
|
|
11356
|
-
*
|
|
11356
|
+
* first-name
|
|
11357
11357
|
*/
|
|
11358
|
-
|
|
11358
|
+
firstName: string;
|
|
11359
11359
|
|
|
11360
11360
|
/**
|
|
11361
11361
|
* email-address
|
|
@@ -11558,14 +11558,14 @@ export interface VariantValue {
|
|
|
11558
11558
|
version: number;
|
|
11559
11559
|
|
|
11560
11560
|
/**
|
|
11561
|
-
*
|
|
11561
|
+
* Variantenattribut
|
|
11562
11562
|
*/
|
|
11563
|
-
|
|
11563
|
+
attributeRef: ApiObjectReference;
|
|
11564
11564
|
|
|
11565
11565
|
/**
|
|
11566
|
-
*
|
|
11566
|
+
* Mehrsprachige Bezeichnungen
|
|
11567
11567
|
*/
|
|
11568
|
-
|
|
11568
|
+
labels: Array<VariantDescription>;
|
|
11569
11569
|
|
|
11570
11570
|
/**
|
|
11571
11571
|
* MetaInformations for this Object
|