@vario-software/types 2026.28.5 → 2026.29.0
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/schema/erp.d.ts +1047 -566
- package/scripting/services.d.ts +37 -37
- package/scripting/types.d.ts +362 -304
package/scripting/types.d.ts
CHANGED
|
@@ -83,14 +83,14 @@ export interface Account {
|
|
|
83
83
|
businessRelationType: BusinessRelationType;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
|
-
*
|
|
86
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
87
87
|
*/
|
|
88
|
-
|
|
88
|
+
accountZoneId: AccountZoneId;
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
|
-
*
|
|
91
|
+
* first contact type for this account
|
|
92
92
|
*/
|
|
93
|
-
|
|
93
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
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
|
+
* Kostenstelle
|
|
147
147
|
*/
|
|
148
|
-
|
|
148
|
+
costCenter: string;
|
|
149
149
|
|
|
150
150
|
/**
|
|
151
|
-
*
|
|
151
|
+
* Summe Forderungen
|
|
152
152
|
*/
|
|
153
|
-
|
|
153
|
+
receivablesSum: number;
|
|
154
154
|
|
|
155
155
|
/**
|
|
156
156
|
* companyLegal for this account
|
|
@@ -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
|
|
@@ -336,14 +336,14 @@ export interface AccountAddress {
|
|
|
336
336
|
types: Array<ApiCreatableReference>;
|
|
337
337
|
|
|
338
338
|
/**
|
|
339
|
-
*
|
|
339
|
+
* Leitweg-ID
|
|
340
340
|
*/
|
|
341
|
-
|
|
341
|
+
buyerReference: string;
|
|
342
342
|
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* GLN/ILN as location identifier for this address
|
|
345
345
|
*/
|
|
346
|
-
|
|
346
|
+
globalLocationNumber: string;
|
|
347
347
|
|
|
348
348
|
/**
|
|
349
349
|
* abweichende Zahlungsart
|
|
@@ -411,14 +411,14 @@ export interface AccountAddress {
|
|
|
411
411
|
streetAddressNumber: string;
|
|
412
412
|
|
|
413
413
|
/**
|
|
414
|
-
*
|
|
414
|
+
* Parcel station customer number
|
|
415
415
|
*/
|
|
416
|
-
|
|
416
|
+
parcelStationCustomerNumber: string;
|
|
417
417
|
|
|
418
418
|
/**
|
|
419
|
-
*
|
|
419
|
+
* Default contacts
|
|
420
420
|
*/
|
|
421
|
-
|
|
421
|
+
defaultContacts: Map<ContactTypeType,Contact>;
|
|
422
422
|
|
|
423
423
|
/**
|
|
424
424
|
* Name3
|
|
@@ -493,26 +493,26 @@ export interface AccountBankdetail {
|
|
|
493
493
|
*/
|
|
494
494
|
version: number;
|
|
495
495
|
|
|
496
|
-
/**
|
|
497
|
-
* city of the bank
|
|
498
|
-
*/
|
|
499
|
-
bankCity: string;
|
|
500
|
-
|
|
501
496
|
/**
|
|
502
497
|
* Hauptbankverbindung für
|
|
503
498
|
*/
|
|
504
499
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
505
500
|
|
|
506
501
|
/**
|
|
507
|
-
*
|
|
502
|
+
* city of the bank
|
|
508
503
|
*/
|
|
509
|
-
|
|
504
|
+
bankCity: string;
|
|
510
505
|
|
|
511
506
|
/**
|
|
512
507
|
* Is default bank?
|
|
513
508
|
*/
|
|
514
509
|
defaultBank: boolean;
|
|
515
510
|
|
|
511
|
+
/**
|
|
512
|
+
* origin type
|
|
513
|
+
*/
|
|
514
|
+
originType: AccountBankdetail$OriginType;
|
|
515
|
+
|
|
516
516
|
/**
|
|
517
517
|
* IBAN
|
|
518
518
|
*/
|
|
@@ -595,14 +595,14 @@ export interface AccountListing {
|
|
|
595
595
|
export interface AccountLoanValue {
|
|
596
596
|
|
|
597
597
|
/**
|
|
598
|
-
*
|
|
598
|
+
* Account
|
|
599
599
|
*/
|
|
600
|
-
|
|
600
|
+
accountId: number;
|
|
601
601
|
|
|
602
602
|
/**
|
|
603
|
-
*
|
|
603
|
+
* Nicht berücksichtigter Betrag
|
|
604
604
|
*/
|
|
605
|
-
|
|
605
|
+
unconsideredAmount: number;
|
|
606
606
|
|
|
607
607
|
/**
|
|
608
608
|
* Betrag aus Aufträgen
|
|
@@ -1014,14 +1014,14 @@ export interface Article {
|
|
|
1014
1014
|
customsTariffNumber: string;
|
|
1015
1015
|
|
|
1016
1016
|
/**
|
|
1017
|
-
*
|
|
1017
|
+
* Product custom data
|
|
1018
1018
|
*/
|
|
1019
|
-
|
|
1019
|
+
listingCustom: EavArticleListing;
|
|
1020
1020
|
|
|
1021
1021
|
/**
|
|
1022
|
-
*
|
|
1022
|
+
* is this product purchasable
|
|
1023
1023
|
*/
|
|
1024
|
-
|
|
1024
|
+
purchasable: boolean;
|
|
1025
1025
|
|
|
1026
1026
|
/**
|
|
1027
1027
|
* base capacity unit
|
|
@@ -1069,14 +1069,14 @@ export interface Article {
|
|
|
1069
1069
|
warrantyInMonths: number;
|
|
1070
1070
|
|
|
1071
1071
|
/**
|
|
1072
|
-
*
|
|
1072
|
+
* Optionen zur Berechnung der Verfügbarkeit
|
|
1073
1073
|
*/
|
|
1074
|
-
|
|
1074
|
+
availabilityDetermination: ArticleAvailabilityDetermination;
|
|
1075
1075
|
|
|
1076
1076
|
/**
|
|
1077
|
-
*
|
|
1077
|
+
* weight and size w.o. packaging
|
|
1078
1078
|
*/
|
|
1079
|
-
|
|
1079
|
+
netMetric: Article$Metric;
|
|
1080
1080
|
|
|
1081
1081
|
/**
|
|
1082
1082
|
* unique product number
|
|
@@ -1229,14 +1229,14 @@ export interface Article {
|
|
|
1229
1229
|
freelyPickable: boolean;
|
|
1230
1230
|
|
|
1231
1231
|
/**
|
|
1232
|
-
*
|
|
1232
|
+
* Charge muss bei Einbuchung in ein Verkaufslager vergeben werden (für Serientyp LOT und BEST_BEFORE)
|
|
1233
1233
|
*/
|
|
1234
|
-
|
|
1234
|
+
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1235
1235
|
|
|
1236
1236
|
/**
|
|
1237
|
-
*
|
|
1237
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1238
1238
|
*/
|
|
1239
|
-
|
|
1239
|
+
taxLiabilityReversed: boolean;
|
|
1240
1240
|
|
|
1241
1241
|
/**
|
|
1242
1242
|
* Notiz
|
|
@@ -1279,14 +1279,14 @@ export interface Article {
|
|
|
1279
1279
|
capacity: number;
|
|
1280
1280
|
|
|
1281
1281
|
/**
|
|
1282
|
-
*
|
|
1282
|
+
* gross sales prices
|
|
1283
1283
|
*/
|
|
1284
|
-
|
|
1284
|
+
grossSalesPrice: number;
|
|
1285
1285
|
|
|
1286
1286
|
/**
|
|
1287
|
-
*
|
|
1287
|
+
* Mindestrestlaufzeit Eingang (Tage): Minimale Restlaufzeit in Tagen, die ein Artikel bei der Einbuchung in ein Verkaufslager noch aufweisen muss
|
|
1288
1288
|
*/
|
|
1289
|
-
|
|
1289
|
+
minimumRemainingDaysBeforeExpiryDateOnGoodsReceipt: number;
|
|
1290
1290
|
|
|
1291
1291
|
/**
|
|
1292
1292
|
* Letzter EKP (Startwert)
|
|
@@ -1308,11 +1308,6 @@ export interface Article {
|
|
|
1308
1308
|
*/
|
|
1309
1309
|
productRef: ApiObjectReference;
|
|
1310
1310
|
|
|
1311
|
-
/**
|
|
1312
|
-
* rabattierbarer Artikel?
|
|
1313
|
-
*/
|
|
1314
|
-
discountable: boolean;
|
|
1315
|
-
|
|
1316
1311
|
/**
|
|
1317
1312
|
* Kontingentartikel
|
|
1318
1313
|
*/
|
|
@@ -1323,6 +1318,11 @@ export interface Article {
|
|
|
1323
1318
|
*/
|
|
1324
1319
|
alternativeName: string;
|
|
1325
1320
|
|
|
1321
|
+
/**
|
|
1322
|
+
* rabattierbarer Artikel?
|
|
1323
|
+
*/
|
|
1324
|
+
discountable: boolean;
|
|
1325
|
+
|
|
1326
1326
|
/**
|
|
1327
1327
|
* base capacity
|
|
1328
1328
|
*/
|
|
@@ -1607,14 +1607,14 @@ export interface ArticleCustomer {
|
|
|
1607
1607
|
deviatingArticleNumber: string;
|
|
1608
1608
|
|
|
1609
1609
|
/**
|
|
1610
|
-
*
|
|
1610
|
+
* Art der Preisermittlung
|
|
1611
1611
|
*/
|
|
1612
|
-
|
|
1612
|
+
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1613
1613
|
|
|
1614
1614
|
/**
|
|
1615
|
-
*
|
|
1615
|
+
* Artikelnummer
|
|
1616
1616
|
*/
|
|
1617
|
-
|
|
1617
|
+
articleNumber: string;
|
|
1618
1618
|
|
|
1619
1619
|
/**
|
|
1620
1620
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
@@ -1724,14 +1724,14 @@ export interface ArticleListing {
|
|
|
1724
1724
|
proposedLowestPriceGross: number;
|
|
1725
1725
|
|
|
1726
1726
|
/**
|
|
1727
|
-
* der
|
|
1727
|
+
* Niedrigster Brutto-Preis der letzten 30 Tage (benutzerdefinierte Eingabe)
|
|
1728
1728
|
*/
|
|
1729
|
-
|
|
1729
|
+
customLowestPriceGross: number;
|
|
1730
1730
|
|
|
1731
1731
|
/**
|
|
1732
|
-
*
|
|
1732
|
+
* der Sales Channel
|
|
1733
1733
|
*/
|
|
1734
|
-
|
|
1734
|
+
salesChannelRef: ApiObjectReference;
|
|
1735
1735
|
|
|
1736
1736
|
/**
|
|
1737
1737
|
* soll der Artikel gelistet werden
|
|
@@ -1947,14 +1947,14 @@ export interface ArticleStorage {
|
|
|
1947
1947
|
reorderPoint: number;
|
|
1948
1948
|
|
|
1949
1949
|
/**
|
|
1950
|
-
*
|
|
1950
|
+
* Aktuelle Menge in Kommissionierung
|
|
1951
1951
|
*/
|
|
1952
|
-
|
|
1952
|
+
quantityInPicking: number;
|
|
1953
1953
|
|
|
1954
1954
|
/**
|
|
1955
|
-
*
|
|
1955
|
+
* Bestellte Menge
|
|
1956
1956
|
*/
|
|
1957
|
-
|
|
1957
|
+
orderedQuantity: number;
|
|
1958
1958
|
|
|
1959
1959
|
/**
|
|
1960
1960
|
* Nachschub auf
|
|
@@ -2034,6 +2034,11 @@ export interface ArticleStorage {
|
|
|
2034
2034
|
|
|
2035
2035
|
export interface ArticleSupplier {
|
|
2036
2036
|
|
|
2037
|
+
/**
|
|
2038
|
+
* Lieferanten-Meldebestand
|
|
2039
|
+
*/
|
|
2040
|
+
supplierReportingStock: number;
|
|
2041
|
+
|
|
2037
2042
|
/**
|
|
2038
2043
|
* Anzeigename des Accounts
|
|
2039
2044
|
*/
|
|
@@ -2044,11 +2049,6 @@ export interface ArticleSupplier {
|
|
|
2044
2049
|
*/
|
|
2045
2050
|
useSupplierArticleDescription: boolean;
|
|
2046
2051
|
|
|
2047
|
-
/**
|
|
2048
|
-
* Lieferanten-Meldebestand
|
|
2049
|
-
*/
|
|
2050
|
-
supplierReportingStock: number;
|
|
2051
|
-
|
|
2052
2052
|
/**
|
|
2053
2053
|
* Lieferzeit in (Werk-)Tagen
|
|
2054
2054
|
*/
|
|
@@ -2145,14 +2145,14 @@ export interface ArticleSupplier {
|
|
|
2145
2145
|
dropShippingAllowed: boolean;
|
|
2146
2146
|
|
|
2147
2147
|
/**
|
|
2148
|
-
* Abweichende
|
|
2148
|
+
* Abweichende Produktbezeichnung
|
|
2149
2149
|
*/
|
|
2150
|
-
|
|
2150
|
+
supplierArticleName: string;
|
|
2151
2151
|
|
|
2152
2152
|
/**
|
|
2153
|
-
* Abweichende
|
|
2153
|
+
* Abweichende Produktbeschreibung
|
|
2154
2154
|
*/
|
|
2155
|
-
|
|
2155
|
+
supplierArticleDescription: string;
|
|
2156
2156
|
|
|
2157
2157
|
/**
|
|
2158
2158
|
* Standardpreis Netto
|
|
@@ -2218,14 +2218,14 @@ export interface Asset {
|
|
|
2218
2218
|
active: boolean;
|
|
2219
2219
|
|
|
2220
2220
|
/**
|
|
2221
|
-
*
|
|
2221
|
+
* Zugehörige Assets
|
|
2222
2222
|
*/
|
|
2223
|
-
|
|
2223
|
+
childAssetRefs: Array<ApiObjectReference>;
|
|
2224
2224
|
|
|
2225
2225
|
/**
|
|
2226
|
-
*
|
|
2226
|
+
* Ende Garantie
|
|
2227
2227
|
*/
|
|
2228
|
-
|
|
2228
|
+
warrantyEndDate: ScriptingDate;
|
|
2229
2229
|
|
|
2230
2230
|
/**
|
|
2231
2231
|
* Asset-Bezeichnung
|
|
@@ -2512,14 +2512,14 @@ export interface CountryReference {
|
|
|
2512
2512
|
export interface CreateNewDocumentRequest {
|
|
2513
2513
|
|
|
2514
2514
|
/**
|
|
2515
|
-
*
|
|
2515
|
+
* Belegart
|
|
2516
2516
|
*/
|
|
2517
|
-
|
|
2517
|
+
documentTypeLabel: string;
|
|
2518
2518
|
|
|
2519
2519
|
/**
|
|
2520
|
-
* Belegart
|
|
2520
|
+
* Standard-Belegart der Kategorie verwenden
|
|
2521
2521
|
*/
|
|
2522
|
-
|
|
2522
|
+
defaultDocumentTypeByCategory: EDocumentCategory;
|
|
2523
2523
|
|
|
2524
2524
|
/**
|
|
2525
2525
|
* Details zum Beleg
|
|
@@ -2744,14 +2744,14 @@ export interface CrmActivityType {
|
|
|
2744
2744
|
export interface CrmChecklistItem {
|
|
2745
2745
|
|
|
2746
2746
|
/**
|
|
2747
|
-
*
|
|
2747
|
+
* Text des Checklisten-Elements
|
|
2748
2748
|
*/
|
|
2749
|
-
|
|
2749
|
+
memo: string;
|
|
2750
2750
|
|
|
2751
2751
|
/**
|
|
2752
|
-
*
|
|
2752
|
+
* Ist das Element "angehakt"?
|
|
2753
2753
|
*/
|
|
2754
|
-
|
|
2754
|
+
checked: boolean;
|
|
2755
2755
|
|
|
2756
2756
|
/**
|
|
2757
2757
|
* Unique identifier of the Object
|
|
@@ -3879,14 +3879,14 @@ export interface Customer {
|
|
|
3879
3879
|
dueDate: ScriptingDate;
|
|
3880
3880
|
|
|
3881
3881
|
/**
|
|
3882
|
-
*
|
|
3882
|
+
* Maximal mögliche Lieferungen
|
|
3883
3883
|
*/
|
|
3884
|
-
|
|
3884
|
+
maxDeliveries: number;
|
|
3885
3885
|
|
|
3886
3886
|
/**
|
|
3887
|
-
*
|
|
3887
|
+
* collective billable
|
|
3888
3888
|
*/
|
|
3889
|
-
|
|
3889
|
+
collectiveBillable: boolean;
|
|
3890
3890
|
|
|
3891
3891
|
/**
|
|
3892
3892
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -4168,14 +4168,14 @@ export interface DeliveryMethod {
|
|
|
4168
4168
|
translations: Array<DocumentTypeTerm>;
|
|
4169
4169
|
|
|
4170
4170
|
/**
|
|
4171
|
-
*
|
|
4171
|
+
* Gültige Ländercodes
|
|
4172
4172
|
*/
|
|
4173
|
-
|
|
4173
|
+
validCountryCodes: Array<string>;
|
|
4174
4174
|
|
|
4175
4175
|
/**
|
|
4176
|
-
*
|
|
4176
|
+
* Versand-Anbieter
|
|
4177
4177
|
*/
|
|
4178
|
-
|
|
4178
|
+
vdsCarrierId: number;
|
|
4179
4179
|
|
|
4180
4180
|
/**
|
|
4181
4181
|
* Standardgewichtseinheit
|
|
@@ -4393,11 +4393,6 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4393
4393
|
*/
|
|
4394
4394
|
deliveryQuantityPackages: number;
|
|
4395
4395
|
|
|
4396
|
-
/**
|
|
4397
|
-
* Steuerpflichtig oder steuerfrei
|
|
4398
|
-
*/
|
|
4399
|
-
taxable: boolean;
|
|
4400
|
-
|
|
4401
4396
|
/**
|
|
4402
4397
|
* Leitweg-ID
|
|
4403
4398
|
*/
|
|
@@ -4408,6 +4403,11 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4408
4403
|
*/
|
|
4409
4404
|
referencedOrderNumber: string;
|
|
4410
4405
|
|
|
4406
|
+
/**
|
|
4407
|
+
* Steuerpflichtig oder steuerfrei
|
|
4408
|
+
*/
|
|
4409
|
+
taxable: boolean;
|
|
4410
|
+
|
|
4411
4411
|
/**
|
|
4412
4412
|
* Preisanpassungen - Belegpositionssumme Basiswährung
|
|
4413
4413
|
*/
|
|
@@ -4513,27 +4513,20 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4513
4513
|
*/
|
|
4514
4514
|
supplierNumber: string;
|
|
4515
4515
|
|
|
4516
|
-
/**
|
|
4517
|
-
* Ist der Beleg zur Lieferung freigegeben?
|
|
4518
|
-
*/
|
|
4519
|
-
deliveryApproved: boolean;
|
|
4520
|
-
|
|
4521
4516
|
/**
|
|
4522
4517
|
* Gesamtpreis brutto
|
|
4523
4518
|
*/
|
|
4524
4519
|
totalGrossPrice: number;
|
|
4525
4520
|
|
|
4526
4521
|
/**
|
|
4527
|
-
*
|
|
4522
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4528
4523
|
*/
|
|
4529
|
-
|
|
4524
|
+
deliveryApproved: boolean;
|
|
4530
4525
|
|
|
4531
4526
|
/**
|
|
4532
|
-
*
|
|
4533
|
-
true wenn die Quittung bezahlt ist
|
|
4534
|
-
|
|
4527
|
+
* Kassen-Zahlungspositionen
|
|
4535
4528
|
*/
|
|
4536
|
-
|
|
4529
|
+
posPayments: Array<DocumentPosPayment>;
|
|
4537
4530
|
|
|
4538
4531
|
/**
|
|
4539
4532
|
* Kundennummer beim Lieferanten
|
|
@@ -4545,6 +4538,13 @@ true wenn die Quittung bezahlt ist
|
|
|
4545
4538
|
*/
|
|
4546
4539
|
maxDeliveries: number;
|
|
4547
4540
|
|
|
4541
|
+
/**
|
|
4542
|
+
* Ist die Quittung bezahlt
|
|
4543
|
+
true wenn die Quittung bezahlt ist
|
|
4544
|
+
|
|
4545
|
+
*/
|
|
4546
|
+
posReceiptPayed: boolean;
|
|
4547
|
+
|
|
4548
4548
|
/**
|
|
4549
4549
|
* Quittung: Summe Zahlbetrag
|
|
4550
4550
|
*/
|
|
@@ -4580,20 +4580,15 @@ true wenn die Quittung bezahlt ist
|
|
|
4580
4580
|
*/
|
|
4581
4581
|
fabricationDetail: DocumentFabricationDetail;
|
|
4582
4582
|
|
|
4583
|
-
/**
|
|
4584
|
-
* Kontonummer der zugehörigen Organisationseinheit
|
|
4585
|
-
*/
|
|
4586
|
-
accountNumber: string;
|
|
4587
|
-
|
|
4588
4583
|
/**
|
|
4589
4584
|
* Berechnungsmodus
|
|
4590
4585
|
*/
|
|
4591
4586
|
calculationMode: CalculationMode;
|
|
4592
4587
|
|
|
4593
4588
|
/**
|
|
4594
|
-
*
|
|
4589
|
+
* Kontonummer der zugehörigen Organisationseinheit
|
|
4595
4590
|
*/
|
|
4596
|
-
|
|
4591
|
+
accountNumber: string;
|
|
4597
4592
|
|
|
4598
4593
|
/**
|
|
4599
4594
|
* Wird vom Workflow verarbeitet?
|
|
@@ -4601,15 +4596,20 @@ true wenn die Quittung bezahlt ist
|
|
|
4601
4596
|
processedByWorkflow: boolean;
|
|
4602
4597
|
|
|
4603
4598
|
/**
|
|
4604
|
-
*
|
|
4599
|
+
* Referenz auf Zahlungsbedingung
|
|
4605
4600
|
*/
|
|
4606
|
-
|
|
4601
|
+
paymentTermRef: PaymentTermRef;
|
|
4607
4602
|
|
|
4608
4603
|
/**
|
|
4609
4604
|
* Preisanpassungen - Beleg Basiswährung
|
|
4610
4605
|
*/
|
|
4611
4606
|
baseTotalDocumentPriceModifier: number;
|
|
4612
4607
|
|
|
4608
|
+
/**
|
|
4609
|
+
* Telefon an Versender übergeben
|
|
4610
|
+
*/
|
|
4611
|
+
forwardPhoneToShipper: boolean;
|
|
4612
|
+
|
|
4613
4613
|
/**
|
|
4614
4614
|
* Liste der Belegtexte
|
|
4615
4615
|
*/
|
|
@@ -4630,26 +4630,26 @@ true wenn die Quittung bezahlt ist
|
|
|
4630
4630
|
*/
|
|
4631
4631
|
defaultAddress: DocumentAddress;
|
|
4632
4632
|
|
|
4633
|
-
/**
|
|
4634
|
-
* Verarbeitungsoption für Stapel
|
|
4635
|
-
*/
|
|
4636
|
-
stackProcessingType: OrderStackProcessingType;
|
|
4637
|
-
|
|
4638
4633
|
/**
|
|
4639
4634
|
* Leistungsdatum
|
|
4640
4635
|
*/
|
|
4641
4636
|
performanceDate: ScriptingDate;
|
|
4642
4637
|
|
|
4643
4638
|
/**
|
|
4644
|
-
*
|
|
4639
|
+
* Verarbeitungsoption für Stapel
|
|
4645
4640
|
*/
|
|
4646
|
-
|
|
4641
|
+
stackProcessingType: OrderStackProcessingType;
|
|
4647
4642
|
|
|
4648
4643
|
/**
|
|
4649
4644
|
* EN16931-Profil für elektronische Rechnungen
|
|
4650
4645
|
*/
|
|
4651
4646
|
en16931Profile: EN16931Profile;
|
|
4652
4647
|
|
|
4648
|
+
/**
|
|
4649
|
+
* Ist der Streckengeschäfts-Beleg zur Rechnung freigegeben?
|
|
4650
|
+
*/
|
|
4651
|
+
dropShippingInvoiceApproved: boolean;
|
|
4652
|
+
|
|
4653
4653
|
/**
|
|
4654
4654
|
* Ort der steuerlichen Leistungserbringung
|
|
4655
4655
|
*/
|
|
@@ -4696,14 +4696,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4696
4696
|
dropShipping: boolean;
|
|
4697
4697
|
|
|
4698
4698
|
/**
|
|
4699
|
-
*
|
|
4699
|
+
* Gesamtpreis netto
|
|
4700
4700
|
*/
|
|
4701
|
-
|
|
4701
|
+
totalNetPrice: number;
|
|
4702
4702
|
|
|
4703
4703
|
/**
|
|
4704
|
-
*
|
|
4704
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4705
4705
|
*/
|
|
4706
|
-
|
|
4706
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4707
4707
|
|
|
4708
4708
|
/**
|
|
4709
4709
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -4825,11 +4825,6 @@ true wenn die Quittung bezahlt ist
|
|
|
4825
4825
|
*/
|
|
4826
4826
|
shippingCosts: Array<DocumentShippingCost>;
|
|
4827
4827
|
|
|
4828
|
-
/**
|
|
4829
|
-
* Rückgeld
|
|
4830
|
-
*/
|
|
4831
|
-
posReceiptChangeAmount: number;
|
|
4832
|
-
|
|
4833
4828
|
/**
|
|
4834
4829
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
4835
4830
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -4837,6 +4832,11 @@ true wenn die Quittung ausbalanciert ist
|
|
|
4837
4832
|
*/
|
|
4838
4833
|
posReceiptBalanced: boolean;
|
|
4839
4834
|
|
|
4835
|
+
/**
|
|
4836
|
+
* Rückgeld
|
|
4837
|
+
*/
|
|
4838
|
+
posReceiptChangeAmount: number;
|
|
4839
|
+
|
|
4840
4840
|
/**
|
|
4841
4841
|
* Referenz auf Lieferbedingung
|
|
4842
4842
|
*/
|
|
@@ -4891,14 +4891,14 @@ export interface DocumentAdditionalInfo {
|
|
|
4891
4891
|
taxSituationOrigin: TaxSituationOrigin;
|
|
4892
4892
|
|
|
4893
4893
|
/**
|
|
4894
|
-
*
|
|
4894
|
+
* Parameter, welche im {@link DocumentContext} verwendet wurden
|
|
4895
4895
|
*/
|
|
4896
|
-
|
|
4896
|
+
contextParameters: Array<AdditionalParameter>;
|
|
4897
4897
|
|
|
4898
4898
|
/**
|
|
4899
|
-
*
|
|
4899
|
+
* Herkunft der Sprache
|
|
4900
4900
|
*/
|
|
4901
|
-
|
|
4901
|
+
languageCodeOrigin: LanguageCodeOrigin;
|
|
4902
4902
|
|
|
4903
4903
|
/**
|
|
4904
4904
|
* Aktiver Rundungsmodus für diesen Beleg (eingefroren aus dem SalesChannel)
|
|
@@ -5415,7 +5415,8 @@ export const enum DocumentImportType {
|
|
|
5415
5415
|
TRANSFERABLE = 'TRANSFERABLE',
|
|
5416
5416
|
TRANSFERABLE_AND_EDITABLE = 'TRANSFERABLE_AND_EDITABLE',
|
|
5417
5417
|
HISTORICAL_DATA = 'HISTORICAL_DATA',
|
|
5418
|
-
E_INVOICE = 'E_INVOICE'
|
|
5418
|
+
E_INVOICE = 'E_INVOICE',
|
|
5419
|
+
EXTERNALLY_CREATED = 'EXTERNALLY_CREATED'
|
|
5419
5420
|
}
|
|
5420
5421
|
|
|
5421
5422
|
export interface DocumentLine {
|
|
@@ -5465,6 +5466,11 @@ export interface DocumentLine {
|
|
|
5465
5466
|
*/
|
|
5466
5467
|
totalGrossWeight: number;
|
|
5467
5468
|
|
|
5469
|
+
/**
|
|
5470
|
+
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
5471
|
+
*/
|
|
5472
|
+
settledOpenItemRef: ApiObjectReference;
|
|
5473
|
+
|
|
5468
5474
|
/**
|
|
5469
5475
|
* skontierbare Position?
|
|
5470
5476
|
*/
|
|
@@ -5501,14 +5507,14 @@ export interface DocumentLine {
|
|
|
5501
5507
|
id: number;
|
|
5502
5508
|
|
|
5503
5509
|
/**
|
|
5504
|
-
*
|
|
5510
|
+
* Positionsnummer über alle Artikelpositionen hinweg
|
|
5505
5511
|
*/
|
|
5506
|
-
|
|
5512
|
+
positionOfArticleLine: number;
|
|
5507
5513
|
|
|
5508
5514
|
/**
|
|
5509
|
-
*
|
|
5515
|
+
* Preis pro Einheit in Basiswährung
|
|
5510
5516
|
*/
|
|
5511
|
-
|
|
5517
|
+
basePrice: number;
|
|
5512
5518
|
|
|
5513
5519
|
/**
|
|
5514
5520
|
* Serientyp
|
|
@@ -5565,6 +5571,11 @@ export interface DocumentLine {
|
|
|
5565
5571
|
*/
|
|
5566
5572
|
shippingDate: ScriptingDate;
|
|
5567
5573
|
|
|
5574
|
+
/**
|
|
5575
|
+
* Offener Restbetrag des auszugleichenden Offenen Postens (nur in der Response)
|
|
5576
|
+
*/
|
|
5577
|
+
settledOpenItemBalance: number;
|
|
5578
|
+
|
|
5568
5579
|
/**
|
|
5569
5580
|
* Kalkulationsstruktur
|
|
5570
5581
|
*/
|
|
@@ -5606,15 +5617,20 @@ export interface DocumentLine {
|
|
|
5606
5617
|
deliveryDateEnd: ScriptingDate;
|
|
5607
5618
|
|
|
5608
5619
|
/**
|
|
5609
|
-
*
|
|
5620
|
+
* Zum Belegdatum anwendbares Skonto des auszugleichenden Offenen Postens (nur in der Response)
|
|
5610
5621
|
*/
|
|
5611
|
-
|
|
5622
|
+
settledOpenItemDiscountAmount: number;
|
|
5612
5623
|
|
|
5613
5624
|
/**
|
|
5614
5625
|
* Vertragsinformationen
|
|
5615
5626
|
*/
|
|
5616
5627
|
contractDetail: DocumentContractDetail;
|
|
5617
5628
|
|
|
5629
|
+
/**
|
|
5630
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5631
|
+
*/
|
|
5632
|
+
baseSalesValueNet: number;
|
|
5633
|
+
|
|
5618
5634
|
/**
|
|
5619
5635
|
* Einheit Nettogewicht
|
|
5620
5636
|
*/
|
|
@@ -5650,6 +5666,11 @@ export interface DocumentLine {
|
|
|
5650
5666
|
*/
|
|
5651
5667
|
complete: boolean;
|
|
5652
5668
|
|
|
5669
|
+
/**
|
|
5670
|
+
* Fälligkeitsdatum des auszugleichenden Offenen Postens (nur in der Response)
|
|
5671
|
+
*/
|
|
5672
|
+
settledOpenItemPaymentDueDate: ScriptingDate;
|
|
5673
|
+
|
|
5653
5674
|
/**
|
|
5654
5675
|
* Leistungsdatum
|
|
5655
5676
|
*/
|
|
@@ -5725,6 +5746,11 @@ export interface DocumentLine {
|
|
|
5725
5746
|
*/
|
|
5726
5747
|
info: MetaInfo;
|
|
5727
5748
|
|
|
5749
|
+
/**
|
|
5750
|
+
* Soll zu der Position Etiketten gedruckt werden.
|
|
5751
|
+
*/
|
|
5752
|
+
doPrintLabel: boolean;
|
|
5753
|
+
|
|
5728
5754
|
/**
|
|
5729
5755
|
* Lieferart
|
|
5730
5756
|
*/
|
|
@@ -5761,14 +5787,14 @@ export interface DocumentLine {
|
|
|
5761
5787
|
position: number;
|
|
5762
5788
|
|
|
5763
5789
|
/**
|
|
5764
|
-
*
|
|
5790
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5765
5791
|
*/
|
|
5766
|
-
|
|
5792
|
+
recalcLinePriceViaComponents: boolean;
|
|
5767
5793
|
|
|
5768
5794
|
/**
|
|
5769
|
-
*
|
|
5795
|
+
* Buchungen
|
|
5770
5796
|
*/
|
|
5771
|
-
|
|
5797
|
+
bookings: Array<DocumentLineBooking>;
|
|
5772
5798
|
|
|
5773
5799
|
/**
|
|
5774
5800
|
* unit gross Volume in cubic meters
|
|
@@ -5860,6 +5886,11 @@ export interface DocumentLine {
|
|
|
5860
5886
|
*/
|
|
5861
5887
|
custom: EavDocumentline;
|
|
5862
5888
|
|
|
5889
|
+
/**
|
|
5890
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
5891
|
+
*/
|
|
5892
|
+
settledOpenItemComment: string;
|
|
5893
|
+
|
|
5863
5894
|
/**
|
|
5864
5895
|
* Artikel
|
|
5865
5896
|
*/
|
|
@@ -6074,6 +6105,11 @@ export interface DocumentLineComponent {
|
|
|
6074
6105
|
*/
|
|
6075
6106
|
texts: Array<DocumentText>;
|
|
6076
6107
|
|
|
6108
|
+
/**
|
|
6109
|
+
* Einzelpreis
|
|
6110
|
+
*/
|
|
6111
|
+
price: number;
|
|
6112
|
+
|
|
6077
6113
|
/**
|
|
6078
6114
|
* Name des Artikels
|
|
6079
6115
|
*/
|
|
@@ -6300,14 +6336,14 @@ export interface DocumentLineFabricationDetailSerialNumber {
|
|
|
6300
6336
|
quantityFinished: number;
|
|
6301
6337
|
|
|
6302
6338
|
/**
|
|
6303
|
-
* Produzierte
|
|
6339
|
+
* Produzierte Seriennummer
|
|
6304
6340
|
*/
|
|
6305
|
-
|
|
6341
|
+
serialNumber: ArticleSerialNumber;
|
|
6306
6342
|
|
|
6307
6343
|
/**
|
|
6308
|
-
* Produzierte
|
|
6344
|
+
* Produzierte/geplante Menge
|
|
6309
6345
|
*/
|
|
6310
|
-
|
|
6346
|
+
quantity: number;
|
|
6311
6347
|
|
|
6312
6348
|
/**
|
|
6313
6349
|
* Gebuchte Komponenten
|
|
@@ -6358,14 +6394,14 @@ export interface DocumentLinePosDetail {
|
|
|
6358
6394
|
withdrawalMode: CashJournalWithdrawalMode;
|
|
6359
6395
|
|
|
6360
6396
|
/**
|
|
6361
|
-
*
|
|
6397
|
+
* Typ der Einlage/Ausgabe
|
|
6362
6398
|
*/
|
|
6363
|
-
|
|
6399
|
+
depositExpenseTypeId: number;
|
|
6364
6400
|
|
|
6365
6401
|
/**
|
|
6366
|
-
*
|
|
6402
|
+
* Status der externen Zahlung
|
|
6367
6403
|
*/
|
|
6368
|
-
|
|
6404
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6369
6405
|
|
|
6370
6406
|
/**
|
|
6371
6407
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6403,14 +6439,14 @@ export interface DocumentLinePosDetail {
|
|
|
6403
6439
|
balanceBeforeWithdrawal: number;
|
|
6404
6440
|
|
|
6405
6441
|
/**
|
|
6406
|
-
*
|
|
6442
|
+
* Typ der Position
|
|
6407
6443
|
*/
|
|
6408
|
-
|
|
6444
|
+
posLineType: PosLineType;
|
|
6409
6445
|
|
|
6410
6446
|
/**
|
|
6411
|
-
*
|
|
6447
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6412
6448
|
*/
|
|
6413
|
-
|
|
6449
|
+
externalPaymentId: string;
|
|
6414
6450
|
|
|
6415
6451
|
/**
|
|
6416
6452
|
* Unique identifier of the Object
|
|
@@ -6495,7 +6531,9 @@ export const enum DocumentLineType {
|
|
|
6495
6531
|
SHIPPING_COST_LINE = 'SHIPPING_COST_LINE',
|
|
6496
6532
|
SUBTOTAL = 'SUBTOTAL',
|
|
6497
6533
|
POS = 'POS',
|
|
6498
|
-
ROUNDING_LINE = 'ROUNDING_LINE'
|
|
6534
|
+
ROUNDING_LINE = 'ROUNDING_LINE',
|
|
6535
|
+
OPEN_ITEM_SETTLEMENT = 'OPEN_ITEM_SETTLEMENT',
|
|
6536
|
+
ON_ACCOUNT_PAYMENT = 'ON_ACCOUNT_PAYMENT'
|
|
6499
6537
|
}
|
|
6500
6538
|
|
|
6501
6539
|
export interface DocumentPosDetail {
|
|
@@ -6649,14 +6687,14 @@ export interface DocumentPosPayment {
|
|
|
6649
6687
|
balanceBeforeWithdrawal: number;
|
|
6650
6688
|
|
|
6651
6689
|
/**
|
|
6652
|
-
*
|
|
6690
|
+
* Typ der Position
|
|
6653
6691
|
*/
|
|
6654
|
-
|
|
6692
|
+
posLineType: PosLineType;
|
|
6655
6693
|
|
|
6656
6694
|
/**
|
|
6657
|
-
*
|
|
6695
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6658
6696
|
*/
|
|
6659
|
-
|
|
6697
|
+
externalPaymentId: string;
|
|
6660
6698
|
|
|
6661
6699
|
/**
|
|
6662
6700
|
* Unique identifier of the Object
|
|
@@ -6784,14 +6822,14 @@ export const enum DocumentRounding {
|
|
|
6784
6822
|
export interface DocumentShippingCost {
|
|
6785
6823
|
|
|
6786
6824
|
/**
|
|
6787
|
-
*
|
|
6825
|
+
* Wurden die Versandkosten manuell eingetragen?
|
|
6788
6826
|
*/
|
|
6789
|
-
|
|
6827
|
+
manualCosts: boolean;
|
|
6790
6828
|
|
|
6791
6829
|
/**
|
|
6792
|
-
*
|
|
6830
|
+
* Die Versandkosten
|
|
6793
6831
|
*/
|
|
6794
|
-
|
|
6832
|
+
costs: number;
|
|
6795
6833
|
|
|
6796
6834
|
/**
|
|
6797
6835
|
* Keine Versandkosten (freier Versand)
|
|
@@ -6919,14 +6957,14 @@ export interface DocumentText {
|
|
|
6919
6957
|
transferableIntoSubsequentDocuments: boolean;
|
|
6920
6958
|
|
|
6921
6959
|
/**
|
|
6922
|
-
*
|
|
6960
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
6923
6961
|
*/
|
|
6924
|
-
|
|
6962
|
+
textPosition: TextPosition;
|
|
6925
6963
|
|
|
6926
6964
|
/**
|
|
6927
|
-
*
|
|
6965
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
6928
6966
|
*/
|
|
6929
|
-
|
|
6967
|
+
deleted: boolean;
|
|
6930
6968
|
|
|
6931
6969
|
/**
|
|
6932
6970
|
* textBaustein Vorlage
|
|
@@ -7224,14 +7262,14 @@ export const enum DropShippingPolicy {
|
|
|
7224
7262
|
export interface DummySerialNumberStockTransferApi {
|
|
7225
7263
|
|
|
7226
7264
|
/**
|
|
7227
|
-
*
|
|
7265
|
+
* Seriennummer
|
|
7228
7266
|
*/
|
|
7229
|
-
|
|
7267
|
+
serialNumberId: number;
|
|
7230
7268
|
|
|
7231
7269
|
/**
|
|
7232
|
-
*
|
|
7270
|
+
* Ziel-Lager
|
|
7233
7271
|
*/
|
|
7234
|
-
|
|
7272
|
+
targetStorageId: number;
|
|
7235
7273
|
|
|
7236
7274
|
/**
|
|
7237
7275
|
* Bemerkung
|
|
@@ -7598,14 +7636,14 @@ export interface FabricationRevertRequest {
|
|
|
7598
7636
|
quantity: number;
|
|
7599
7637
|
|
|
7600
7638
|
/**
|
|
7601
|
-
*
|
|
7639
|
+
* Material automatisch stornieren
|
|
7602
7640
|
*/
|
|
7603
|
-
|
|
7641
|
+
autoRevertComponents: boolean;
|
|
7604
7642
|
|
|
7605
7643
|
/**
|
|
7606
|
-
*
|
|
7644
|
+
* ID der zu stornierenden Position
|
|
7607
7645
|
*/
|
|
7608
|
-
|
|
7646
|
+
documentLineId: number;
|
|
7609
7647
|
|
|
7610
7648
|
/**
|
|
7611
7649
|
* Zu stornierende Seriennummern
|
|
@@ -8036,14 +8074,14 @@ export interface OpenItem {
|
|
|
8036
8074
|
sumFee: number;
|
|
8037
8075
|
|
|
8038
8076
|
/**
|
|
8039
|
-
*
|
|
8077
|
+
* Zahlungsplan
|
|
8040
8078
|
*/
|
|
8041
|
-
|
|
8079
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8042
8080
|
|
|
8043
8081
|
/**
|
|
8044
|
-
*
|
|
8082
|
+
* The full amount of the payment
|
|
8045
8083
|
*/
|
|
8046
|
-
|
|
8084
|
+
fullPaymentAmount: number;
|
|
8047
8085
|
|
|
8048
8086
|
/**
|
|
8049
8087
|
* Zahlungssperre
|
|
@@ -8076,14 +8114,14 @@ export interface OpenItem {
|
|
|
8076
8114
|
baseSumDiscount: number;
|
|
8077
8115
|
|
|
8078
8116
|
/**
|
|
8079
|
-
*
|
|
8117
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8080
8118
|
*/
|
|
8081
|
-
|
|
8119
|
+
baseSumDunnings: number;
|
|
8082
8120
|
|
|
8083
8121
|
/**
|
|
8084
|
-
*
|
|
8122
|
+
* Zahlungsvorlage
|
|
8085
8123
|
*/
|
|
8086
|
-
|
|
8124
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8087
8125
|
|
|
8088
8126
|
/**
|
|
8089
8127
|
* Rechnungsbetrag
|
|
@@ -8096,14 +8134,14 @@ export interface OpenItem {
|
|
|
8096
8134
|
taxRateRef: ApiObjectReference;
|
|
8097
8135
|
|
|
8098
8136
|
/**
|
|
8099
|
-
*
|
|
8137
|
+
* Anzahlungsrechnung
|
|
8100
8138
|
*/
|
|
8101
|
-
|
|
8139
|
+
depositInvoice: ApiObjectReference;
|
|
8102
8140
|
|
|
8103
8141
|
/**
|
|
8104
|
-
*
|
|
8142
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8105
8143
|
*/
|
|
8106
|
-
|
|
8144
|
+
baseCurrencyCode: string;
|
|
8107
8145
|
|
|
8108
8146
|
/**
|
|
8109
8147
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -8560,14 +8598,14 @@ export interface PaymentMethod {
|
|
|
8560
8598
|
daysToAddForFollowup: number;
|
|
8561
8599
|
|
|
8562
8600
|
/**
|
|
8563
|
-
*
|
|
8601
|
+
* Die Business Transaction
|
|
8564
8602
|
*/
|
|
8565
|
-
|
|
8603
|
+
businessTransaction: ApiObjectReference;
|
|
8566
8604
|
|
|
8567
8605
|
/**
|
|
8568
|
-
*
|
|
8606
|
+
* external Payment Id
|
|
8569
8607
|
*/
|
|
8570
|
-
|
|
8608
|
+
externalPaymentId: string;
|
|
8571
8609
|
|
|
8572
8610
|
/**
|
|
8573
8611
|
* Unique identifier of the Object
|
|
@@ -9009,14 +9047,14 @@ export interface Picklist {
|
|
|
9009
9047
|
export interface PicklistLine {
|
|
9010
9048
|
|
|
9011
9049
|
/**
|
|
9012
|
-
*
|
|
9050
|
+
* Gesammelte Menge der Position
|
|
9013
9051
|
*/
|
|
9014
|
-
|
|
9052
|
+
quantityCollected: number;
|
|
9015
9053
|
|
|
9016
9054
|
/**
|
|
9017
|
-
*
|
|
9055
|
+
* Pickbox, mit der diese Position gesammelt werden soll
|
|
9018
9056
|
*/
|
|
9019
|
-
|
|
9057
|
+
pickTrolleyBoxRef: ApiObjectReference;
|
|
9020
9058
|
|
|
9021
9059
|
/**
|
|
9022
9060
|
* Komponenten dieser Position, falls es sich bei dieser Position um eine Baugruppe handelt
|
|
@@ -9054,14 +9092,14 @@ export interface PicklistLine {
|
|
|
9054
9092
|
version: number;
|
|
9055
9093
|
|
|
9056
9094
|
/**
|
|
9057
|
-
*
|
|
9095
|
+
* Lageranzeigename
|
|
9058
9096
|
*/
|
|
9059
|
-
|
|
9097
|
+
storageDisplayName: string;
|
|
9060
9098
|
|
|
9061
9099
|
/**
|
|
9062
|
-
*
|
|
9100
|
+
* ID der Quell-Dokumentposition
|
|
9063
9101
|
*/
|
|
9064
|
-
|
|
9102
|
+
sourceDocumentLineId: number;
|
|
9065
9103
|
|
|
9066
9104
|
/**
|
|
9067
9105
|
* Artikelnummer
|
|
@@ -9127,14 +9165,14 @@ export interface PicklistLine {
|
|
|
9127
9165
|
export interface PicklistLineBooking {
|
|
9128
9166
|
|
|
9129
9167
|
/**
|
|
9130
|
-
*
|
|
9168
|
+
* Seriennummer
|
|
9131
9169
|
*/
|
|
9132
|
-
|
|
9170
|
+
serialNumber: ArticleSerialNumber;
|
|
9133
9171
|
|
|
9134
9172
|
/**
|
|
9135
|
-
*
|
|
9173
|
+
* Zu buchende Menge (gesammelt)
|
|
9136
9174
|
*/
|
|
9137
|
-
|
|
9175
|
+
quantity: number;
|
|
9138
9176
|
|
|
9139
9177
|
/**
|
|
9140
9178
|
* Anzeigename vom Lagerplatz
|
|
@@ -9215,14 +9253,14 @@ export interface PicklistLineComponent {
|
|
|
9215
9253
|
targetDocumentLineComponentId: number;
|
|
9216
9254
|
|
|
9217
9255
|
/**
|
|
9218
|
-
*
|
|
9256
|
+
* abweichende Artikelbezeichnung
|
|
9219
9257
|
*/
|
|
9220
|
-
|
|
9258
|
+
articleAlternativeName: string;
|
|
9221
9259
|
|
|
9222
9260
|
/**
|
|
9223
|
-
*
|
|
9261
|
+
* Menge pro Baugruppe (falls die Picklist-Line eine Baugruppe ist)
|
|
9224
9262
|
*/
|
|
9225
|
-
|
|
9263
|
+
quantityPerAssemblyGroup: number;
|
|
9226
9264
|
|
|
9227
9265
|
/**
|
|
9228
9266
|
* Verpackte Menge der Position
|
|
@@ -9406,14 +9444,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9406
9444
|
maxOrderCount: number;
|
|
9407
9445
|
|
|
9408
9446
|
/**
|
|
9409
|
-
*
|
|
9447
|
+
* Selektion über den Bereich vom Lieferdatum
|
|
9410
9448
|
*/
|
|
9411
|
-
|
|
9449
|
+
deliveryDateRange: PicklistTemplate$DateRange;
|
|
9412
9450
|
|
|
9413
9451
|
/**
|
|
9414
|
-
*
|
|
9452
|
+
* Nur vollständig lieferbare Positionen
|
|
9415
9453
|
*/
|
|
9416
|
-
|
|
9454
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9417
9455
|
|
|
9418
9456
|
/**
|
|
9419
9457
|
* Selektion über den Bereich vom Belegdatum
|
|
@@ -9493,26 +9531,26 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9493
9531
|
*/
|
|
9494
9532
|
specifyStorageBins: boolean;
|
|
9495
9533
|
|
|
9496
|
-
/**
|
|
9497
|
-
* Der zu verwendende Pickwagen
|
|
9498
|
-
*/
|
|
9499
|
-
orderPickingTrolleyRef: ApiObjectReference;
|
|
9500
|
-
|
|
9501
9534
|
/**
|
|
9502
9535
|
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9503
9536
|
*/
|
|
9504
9537
|
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9505
9538
|
|
|
9506
9539
|
/**
|
|
9507
|
-
*
|
|
9540
|
+
* Der zu verwendende Pickwagen
|
|
9508
9541
|
*/
|
|
9509
|
-
|
|
9542
|
+
orderPickingTrolleyRef: ApiObjectReference;
|
|
9510
9543
|
|
|
9511
9544
|
/**
|
|
9512
9545
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9513
9546
|
*/
|
|
9514
9547
|
sortByRoutePosition: boolean;
|
|
9515
9548
|
|
|
9549
|
+
/**
|
|
9550
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9551
|
+
*/
|
|
9552
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9553
|
+
|
|
9516
9554
|
/**
|
|
9517
9555
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9518
9556
|
*/
|
|
@@ -9571,11 +9609,6 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9571
9609
|
*/
|
|
9572
9610
|
showShippingFormOnPickingFinish: boolean;
|
|
9573
9611
|
|
|
9574
|
-
/**
|
|
9575
|
-
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9576
|
-
*/
|
|
9577
|
-
printLabelOnScan: boolean;
|
|
9578
|
-
|
|
9579
9612
|
/**
|
|
9580
9613
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
9581
9614
|
*/
|
|
@@ -9591,6 +9624,11 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9591
9624
|
*/
|
|
9592
9625
|
allowFullConfirmation: boolean;
|
|
9593
9626
|
|
|
9627
|
+
/**
|
|
9628
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
9629
|
+
*/
|
|
9630
|
+
printLabelOnScan: boolean;
|
|
9631
|
+
|
|
9594
9632
|
/**
|
|
9595
9633
|
* Verwende die Verkaufseinheit als Standardmenge
|
|
9596
9634
|
*/
|
|
@@ -9617,14 +9655,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
9617
9655
|
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
9618
9656
|
|
|
9619
9657
|
/**
|
|
9620
|
-
*
|
|
9658
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
9621
9659
|
*/
|
|
9622
|
-
|
|
9660
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
9623
9661
|
|
|
9624
9662
|
/**
|
|
9625
|
-
*
|
|
9663
|
+
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
9626
9664
|
*/
|
|
9627
|
-
|
|
9665
|
+
autoDeterminationOfLots: boolean;
|
|
9628
9666
|
|
|
9629
9667
|
/**
|
|
9630
9668
|
* Zielmengen in Masken verstecken?
|
|
@@ -9880,14 +9918,14 @@ export interface ProductArticleRef {
|
|
|
9880
9918
|
export interface ProductDiscount {
|
|
9881
9919
|
|
|
9882
9920
|
/**
|
|
9883
|
-
*
|
|
9921
|
+
* Hauptartikel, für welchen dieser Rabatt gültig ist
|
|
9884
9922
|
*/
|
|
9885
|
-
|
|
9923
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
9886
9924
|
|
|
9887
9925
|
/**
|
|
9888
|
-
*
|
|
9926
|
+
* Kundengruppe
|
|
9889
9927
|
*/
|
|
9890
|
-
|
|
9928
|
+
customerGroupRef: ApiObjectReference;
|
|
9891
9929
|
|
|
9892
9930
|
/**
|
|
9893
9931
|
* Lieferantengruppe
|
|
@@ -9965,14 +10003,14 @@ export interface ProductDiscount {
|
|
|
9965
10003
|
modifierValueType: ValueType;
|
|
9966
10004
|
|
|
9967
10005
|
/**
|
|
9968
|
-
*
|
|
10006
|
+
* Name des Rabatts
|
|
9969
10007
|
*/
|
|
9970
|
-
|
|
10008
|
+
modifierName: string;
|
|
9971
10009
|
|
|
9972
10010
|
/**
|
|
9973
|
-
*
|
|
10011
|
+
* Account, für den der Rabatt gültig ist
|
|
9974
10012
|
*/
|
|
9975
|
-
|
|
10013
|
+
accountRef: ApiObjectReference;
|
|
9976
10014
|
|
|
9977
10015
|
/**
|
|
9978
10016
|
* Unique identifier of the Object
|
|
@@ -10089,14 +10127,14 @@ export interface ProductMainGroup {
|
|
|
10089
10127
|
export interface ProductPrice {
|
|
10090
10128
|
|
|
10091
10129
|
/**
|
|
10092
|
-
*
|
|
10130
|
+
* Hauptartikel, für welches dieser Preis gültig ist
|
|
10093
10131
|
*/
|
|
10094
|
-
|
|
10132
|
+
accessoryMainArticleRef: ApiObjectReference;
|
|
10095
10133
|
|
|
10096
10134
|
/**
|
|
10097
|
-
*
|
|
10135
|
+
* Kundengruppe
|
|
10098
10136
|
*/
|
|
10099
|
-
|
|
10137
|
+
customerGroupRef: ApiObjectReference;
|
|
10100
10138
|
|
|
10101
10139
|
/**
|
|
10102
10140
|
* Einkaufspreis zur Kalkulation
|
|
@@ -10298,20 +10336,15 @@ export const enum RegulationSet {
|
|
|
10298
10336
|
|
|
10299
10337
|
export interface RequestDocument {
|
|
10300
10338
|
|
|
10301
|
-
/**
|
|
10302
|
-
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10303
|
-
*/
|
|
10304
|
-
incomingGoodsStorageBinId: number;
|
|
10305
|
-
|
|
10306
10339
|
/**
|
|
10307
10340
|
* Belegdatum
|
|
10308
10341
|
*/
|
|
10309
10342
|
documentDate: ScriptingDate;
|
|
10310
10343
|
|
|
10311
10344
|
/**
|
|
10312
|
-
* ID
|
|
10345
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10313
10346
|
*/
|
|
10314
|
-
|
|
10347
|
+
incomingGoodsStorageBinId: number;
|
|
10315
10348
|
|
|
10316
10349
|
/**
|
|
10317
10350
|
* Der Anzahlungsbetrag
|
|
@@ -10323,6 +10356,11 @@ export interface RequestDocument {
|
|
|
10323
10356
|
*/
|
|
10324
10357
|
performanceDate: ScriptingDate;
|
|
10325
10358
|
|
|
10359
|
+
/**
|
|
10360
|
+
* ID der Kassenschublade (bei POS)
|
|
10361
|
+
*/
|
|
10362
|
+
cashDrawerId: number;
|
|
10363
|
+
|
|
10326
10364
|
/**
|
|
10327
10365
|
* Für interne Zwecke: Liefermethode für das Document
|
|
10328
10366
|
*/
|
|
@@ -10379,14 +10417,14 @@ export interface RequestDocument {
|
|
|
10379
10417
|
lines: Array<RequestDocumentLine>;
|
|
10380
10418
|
|
|
10381
10419
|
/**
|
|
10382
|
-
*
|
|
10420
|
+
* Die Vertragsdetails
|
|
10383
10421
|
*/
|
|
10384
|
-
|
|
10422
|
+
contractDetail: DocumentContractDetail;
|
|
10385
10423
|
|
|
10386
10424
|
/**
|
|
10387
|
-
*
|
|
10425
|
+
* ID der Kasse (bei POS)
|
|
10388
10426
|
*/
|
|
10389
|
-
|
|
10427
|
+
posRegisterId: number;
|
|
10390
10428
|
|
|
10391
10429
|
/**
|
|
10392
10430
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10444,14 +10482,14 @@ export interface RequestDocument {
|
|
|
10444
10482
|
texts: Array<DocumentText>;
|
|
10445
10483
|
|
|
10446
10484
|
/**
|
|
10447
|
-
*
|
|
10485
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10448
10486
|
*/
|
|
10449
|
-
|
|
10487
|
+
processedByPicklistProcessing: boolean;
|
|
10450
10488
|
|
|
10451
10489
|
/**
|
|
10452
|
-
*
|
|
10490
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10453
10491
|
*/
|
|
10454
|
-
|
|
10492
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10455
10493
|
|
|
10456
10494
|
/**
|
|
10457
10495
|
* Die Rabatte des Beleges
|
|
@@ -10527,14 +10565,14 @@ export interface RequestDocumentLine {
|
|
|
10527
10565
|
dropShippingPolicy: DropShippingPolicy;
|
|
10528
10566
|
|
|
10529
10567
|
/**
|
|
10530
|
-
*
|
|
10568
|
+
* (optional) Lager-ID
|
|
10531
10569
|
*/
|
|
10532
|
-
|
|
10570
|
+
storageId: number;
|
|
10533
10571
|
|
|
10534
10572
|
/**
|
|
10535
|
-
*
|
|
10573
|
+
* Positionsnummer der Artikel
|
|
10536
10574
|
*/
|
|
10537
|
-
|
|
10575
|
+
positionOfArticleLine: number;
|
|
10538
10576
|
|
|
10539
10577
|
/**
|
|
10540
10578
|
* Vertragsdetails zur Belegposition
|
|
@@ -10571,6 +10609,11 @@ export interface RequestDocumentLine {
|
|
|
10571
10609
|
*/
|
|
10572
10610
|
custom: EavDocumentline;
|
|
10573
10611
|
|
|
10612
|
+
/**
|
|
10613
|
+
* Bemerkung zur OP-Position - wird beim Abschluss in den Kommentar des Offenen Postens übernommen
|
|
10614
|
+
*/
|
|
10615
|
+
settledOpenItemComment: string;
|
|
10616
|
+
|
|
10574
10617
|
/**
|
|
10575
10618
|
* (optional) ID des Artikels dieser Position
|
|
10576
10619
|
*/
|
|
@@ -10591,6 +10634,11 @@ export interface RequestDocumentLine {
|
|
|
10591
10634
|
*/
|
|
10592
10635
|
incomingGoodsPickTrolleyId: number;
|
|
10593
10636
|
|
|
10637
|
+
/**
|
|
10638
|
+
* ID des auszugleichenden Offenen Postens (nur bei OPEN_ITEM_SETTLEMENT)
|
|
10639
|
+
*/
|
|
10640
|
+
settledOpenItemId: number;
|
|
10641
|
+
|
|
10594
10642
|
/**
|
|
10595
10643
|
* Provisionsherkunft dieser Belegposition
|
|
10596
10644
|
*/
|
|
@@ -10617,14 +10665,14 @@ export interface RequestDocumentLine {
|
|
|
10617
10665
|
externalArticleNumber: string;
|
|
10618
10666
|
|
|
10619
10667
|
/**
|
|
10620
|
-
*
|
|
10668
|
+
* ID der Quell-Belegposition
|
|
10621
10669
|
*/
|
|
10622
|
-
|
|
10670
|
+
sourceLineId: number;
|
|
10623
10671
|
|
|
10624
10672
|
/**
|
|
10625
|
-
*
|
|
10673
|
+
* Buchungen zu dieser Belegposition
|
|
10626
10674
|
*/
|
|
10627
|
-
|
|
10675
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
10628
10676
|
|
|
10629
10677
|
/**
|
|
10630
10678
|
* Zu der Zeile Etikettendruck anstoßen
|
|
@@ -10845,6 +10893,11 @@ export interface SalesAgent {
|
|
|
10845
10893
|
*/
|
|
10846
10894
|
performanceCountryCode: string;
|
|
10847
10895
|
|
|
10896
|
+
/**
|
|
10897
|
+
* reference to the assigned user
|
|
10898
|
+
*/
|
|
10899
|
+
userRef: ApiObjectReference;
|
|
10900
|
+
|
|
10848
10901
|
/**
|
|
10849
10902
|
* billing type
|
|
10850
10903
|
*/
|
|
@@ -11209,14 +11262,14 @@ export interface SequencerConfigurationDetail {
|
|
|
11209
11262
|
export interface SerialNumberWithQuantityApi {
|
|
11210
11263
|
|
|
11211
11264
|
/**
|
|
11212
|
-
*
|
|
11265
|
+
* Seriennummer
|
|
11213
11266
|
*/
|
|
11214
|
-
|
|
11267
|
+
serialNumber: ArticleSerialNumber;
|
|
11215
11268
|
|
|
11216
11269
|
/**
|
|
11217
|
-
*
|
|
11270
|
+
* Menge
|
|
11218
11271
|
*/
|
|
11219
|
-
|
|
11272
|
+
quantity: number;
|
|
11220
11273
|
}
|
|
11221
11274
|
|
|
11222
11275
|
export interface ShelfCommonMapper {
|
|
@@ -11462,14 +11515,14 @@ export interface ShelfFile {
|
|
|
11462
11515
|
subFiles: Array<SubFileInfo>;
|
|
11463
11516
|
|
|
11464
11517
|
/**
|
|
11465
|
-
*
|
|
11518
|
+
* fileSize
|
|
11466
11519
|
*/
|
|
11467
|
-
|
|
11520
|
+
fileSize: number;
|
|
11468
11521
|
|
|
11469
11522
|
/**
|
|
11470
|
-
*
|
|
11523
|
+
* revision number of this file
|
|
11471
11524
|
*/
|
|
11472
|
-
|
|
11525
|
+
revisionNumber: number;
|
|
11473
11526
|
|
|
11474
11527
|
/**
|
|
11475
11528
|
* file-extension of this entry
|
|
@@ -11497,14 +11550,14 @@ export interface ShelfFile {
|
|
|
11497
11550
|
version: number;
|
|
11498
11551
|
|
|
11499
11552
|
/**
|
|
11500
|
-
*
|
|
11553
|
+
* current reference of this file in our storage
|
|
11501
11554
|
*/
|
|
11502
|
-
|
|
11555
|
+
storageHandle: string;
|
|
11503
11556
|
|
|
11504
11557
|
/**
|
|
11505
|
-
*
|
|
11558
|
+
* meta data
|
|
11506
11559
|
*/
|
|
11507
|
-
|
|
11560
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
11508
11561
|
|
|
11509
11562
|
/**
|
|
11510
11563
|
* MetaInformations for this Object
|
|
@@ -11702,9 +11755,9 @@ export const enum StockJournalFactor {
|
|
|
11702
11755
|
export interface StockMovementManualApi {
|
|
11703
11756
|
|
|
11704
11757
|
/**
|
|
11705
|
-
*
|
|
11758
|
+
* Preiseinheit, auf die sich der EK bezieht (i.d.R. basePriceUnit des Artikels)
|
|
11706
11759
|
*/
|
|
11707
|
-
|
|
11760
|
+
priceUnit: number;
|
|
11708
11761
|
|
|
11709
11762
|
/**
|
|
11710
11763
|
* Bemerkung
|
|
@@ -11742,10 +11795,15 @@ export interface StockMovementManualApi {
|
|
|
11742
11795
|
storageLocation: string;
|
|
11743
11796
|
|
|
11744
11797
|
/**
|
|
11745
|
-
* EK (spielt nur bei Zugängen eine Rolle
|
|
11798
|
+
* EK pro Preiseinheit (siehe priceUnit); spielt nur bei Zugängen eine Rolle
|
|
11746
11799
|
*/
|
|
11747
11800
|
purchasePrice: number;
|
|
11748
11801
|
|
|
11802
|
+
/**
|
|
11803
|
+
* Haltbarkeitsdatum
|
|
11804
|
+
*/
|
|
11805
|
+
expiryDate: ScriptingDate;
|
|
11806
|
+
|
|
11749
11807
|
/**
|
|
11750
11808
|
* Notiz zur Seriennummer
|
|
11751
11809
|
*/
|
|
@@ -11765,14 +11823,14 @@ export interface StockMovementManualApi {
|
|
|
11765
11823
|
export interface StockTransferApi {
|
|
11766
11824
|
|
|
11767
11825
|
/**
|
|
11768
|
-
*
|
|
11826
|
+
* Seriennummer
|
|
11769
11827
|
*/
|
|
11770
|
-
|
|
11828
|
+
serialNumberId: number;
|
|
11771
11829
|
|
|
11772
11830
|
/**
|
|
11773
|
-
*
|
|
11831
|
+
* Ziel-Lager
|
|
11774
11832
|
*/
|
|
11775
|
-
|
|
11833
|
+
targetStorageId: number;
|
|
11776
11834
|
|
|
11777
11835
|
/**
|
|
11778
11836
|
* Bemerkung
|
|
@@ -12081,14 +12139,14 @@ export interface TagDto {
|
|
|
12081
12139
|
editColor: string;
|
|
12082
12140
|
|
|
12083
12141
|
/**
|
|
12084
|
-
* Farbe
|
|
12142
|
+
* Farbe für die Anzeige des Tags
|
|
12085
12143
|
*/
|
|
12086
|
-
|
|
12144
|
+
color: string;
|
|
12087
12145
|
|
|
12088
12146
|
/**
|
|
12089
|
-
* Farbe
|
|
12147
|
+
* Farbe in Such-GUI
|
|
12090
12148
|
*/
|
|
12091
|
-
|
|
12149
|
+
searchColor: string;
|
|
12092
12150
|
|
|
12093
12151
|
/**
|
|
12094
12152
|
* Beschriftung des Tags
|
|
@@ -12132,14 +12190,14 @@ export const enum TagType {
|
|
|
12132
12190
|
export interface TaxIdForeignCountry {
|
|
12133
12191
|
|
|
12134
12192
|
/**
|
|
12135
|
-
*
|
|
12193
|
+
* ISO 2 Code of the country this tax ID is used for
|
|
12136
12194
|
*/
|
|
12137
|
-
|
|
12195
|
+
countryCode: string;
|
|
12138
12196
|
|
|
12139
12197
|
/**
|
|
12140
|
-
*
|
|
12198
|
+
* Tax ID of the company in the associated country
|
|
12141
12199
|
*/
|
|
12142
|
-
|
|
12200
|
+
taxId: string;
|
|
12143
12201
|
|
|
12144
12202
|
/**
|
|
12145
12203
|
* Unique identifier of the Object
|
|
@@ -12395,14 +12453,14 @@ export interface User {
|
|
|
12395
12453
|
roles: Array<ApiObjectReference>;
|
|
12396
12454
|
|
|
12397
12455
|
/**
|
|
12398
|
-
*
|
|
12456
|
+
* Gruppen
|
|
12399
12457
|
*/
|
|
12400
|
-
|
|
12458
|
+
groups: Array<ApiObjectReference>;
|
|
12401
12459
|
|
|
12402
12460
|
/**
|
|
12403
|
-
*
|
|
12461
|
+
* Referenzierte Kundenbenutzer ID (CustomerUserEntity.id aus vab-manager)
|
|
12404
12462
|
*/
|
|
12405
|
-
|
|
12463
|
+
referencedCustomerUserId: number;
|
|
12406
12464
|
|
|
12407
12465
|
/**
|
|
12408
12466
|
* Is the user active?
|
|
@@ -12445,14 +12503,14 @@ export interface User {
|
|
|
12445
12503
|
id: number;
|
|
12446
12504
|
|
|
12447
12505
|
/**
|
|
12448
|
-
*
|
|
12506
|
+
* username
|
|
12449
12507
|
*/
|
|
12450
|
-
|
|
12508
|
+
username: string;
|
|
12451
12509
|
|
|
12452
12510
|
/**
|
|
12453
|
-
*
|
|
12511
|
+
* Valid to
|
|
12454
12512
|
*/
|
|
12455
|
-
|
|
12513
|
+
validTo: ScriptingDateTime;
|
|
12456
12514
|
|
|
12457
12515
|
/**
|
|
12458
12516
|
* MetaInformations for this Object
|