@vario-software/types 2026.34.3 → 2026.34.4
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 +52 -52
- package/scripting/types.d.ts +340 -340
package/scripting/types.d.ts
CHANGED
|
@@ -84,14 +84,14 @@ export interface Account {
|
|
|
84
84
|
businessRelationType: BusinessRelationType;
|
|
85
85
|
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* first contact type for this account
|
|
88
88
|
*/
|
|
89
|
-
|
|
89
|
+
initialContactTypeRef: ApiCreatableReference;
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
|
-
*
|
|
92
|
+
* Zeitzone (bzw. Zeitzonen-Offset) des Accounts
|
|
93
93
|
*/
|
|
94
|
-
|
|
94
|
+
accountZoneId: AccountZoneId;
|
|
95
95
|
|
|
96
96
|
/**
|
|
97
97
|
* Supplier of this account
|
|
@@ -144,14 +144,14 @@ export interface Account {
|
|
|
144
144
|
payablesSum: number;
|
|
145
145
|
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
147
|
+
* Summe Forderungen
|
|
148
148
|
*/
|
|
149
|
-
|
|
149
|
+
receivablesSum: number;
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
|
-
*
|
|
152
|
+
* Kostenstelle
|
|
153
153
|
*/
|
|
154
|
-
|
|
154
|
+
costCenter: string;
|
|
155
155
|
|
|
156
156
|
/**
|
|
157
157
|
* Custom account data
|
|
@@ -302,14 +302,14 @@ export interface AccountAddress {
|
|
|
302
302
|
postOfficeBox: string;
|
|
303
303
|
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* Country code
|
|
306
306
|
*/
|
|
307
|
-
|
|
307
|
+
countryCode: string;
|
|
308
308
|
|
|
309
309
|
/**
|
|
310
|
-
*
|
|
310
|
+
* Street
|
|
311
311
|
*/
|
|
312
|
-
|
|
312
|
+
street: string;
|
|
313
313
|
|
|
314
314
|
/**
|
|
315
315
|
* Unique identifier of the Object
|
|
@@ -337,14 +337,14 @@ export interface AccountAddress {
|
|
|
337
337
|
types: Array<ApiCreatableReference>;
|
|
338
338
|
|
|
339
339
|
/**
|
|
340
|
-
*
|
|
340
|
+
* GLN/ILN as location identifier for this address
|
|
341
341
|
*/
|
|
342
|
-
|
|
342
|
+
globalLocationNumber: string;
|
|
343
343
|
|
|
344
344
|
/**
|
|
345
|
-
*
|
|
345
|
+
* Leitweg-ID
|
|
346
346
|
*/
|
|
347
|
-
|
|
347
|
+
buyerReference: string;
|
|
348
348
|
|
|
349
349
|
/**
|
|
350
350
|
* Custom data
|
|
@@ -452,14 +452,14 @@ export interface AccountAddress {
|
|
|
452
452
|
name1: string;
|
|
453
453
|
|
|
454
454
|
/**
|
|
455
|
-
*
|
|
455
|
+
* abweichende Zahlungsbedingungen
|
|
456
456
|
*/
|
|
457
|
-
|
|
457
|
+
deviatingPaymentTermRef: ApiObjectReference;
|
|
458
458
|
|
|
459
459
|
/**
|
|
460
|
-
*
|
|
460
|
+
* Contacts
|
|
461
461
|
*/
|
|
462
|
-
|
|
462
|
+
contacts: Array<Contact>;
|
|
463
463
|
|
|
464
464
|
/**
|
|
465
465
|
* is this the default address of the account
|
|
@@ -505,14 +505,14 @@ export interface AccountBankdetail {
|
|
|
505
505
|
mainBankAccountType: TaxPerformanceLocationType;
|
|
506
506
|
|
|
507
507
|
/**
|
|
508
|
-
*
|
|
508
|
+
* origin type
|
|
509
509
|
*/
|
|
510
|
-
|
|
510
|
+
originType: AccountBankdetail$OriginType;
|
|
511
511
|
|
|
512
512
|
/**
|
|
513
|
-
*
|
|
513
|
+
* Is default bank?
|
|
514
514
|
*/
|
|
515
|
-
|
|
515
|
+
defaultBank: boolean;
|
|
516
516
|
|
|
517
517
|
/**
|
|
518
518
|
* IBAN
|
|
@@ -596,14 +596,14 @@ export interface AccountListing {
|
|
|
596
596
|
export interface AccountLoanValue {
|
|
597
597
|
|
|
598
598
|
/**
|
|
599
|
-
*
|
|
599
|
+
* Nicht berücksichtigter Betrag
|
|
600
600
|
*/
|
|
601
|
-
|
|
601
|
+
unconsideredAmount: number;
|
|
602
602
|
|
|
603
603
|
/**
|
|
604
|
-
*
|
|
604
|
+
* Account
|
|
605
605
|
*/
|
|
606
|
-
|
|
606
|
+
accountId: number;
|
|
607
607
|
|
|
608
608
|
/**
|
|
609
609
|
* Betrag aus Aufträgen
|
|
@@ -1240,14 +1240,14 @@ export interface Article {
|
|
|
1240
1240
|
lotOnlyRequiredWhenBookedToSalesStorage: boolean;
|
|
1241
1241
|
|
|
1242
1242
|
/**
|
|
1243
|
-
*
|
|
1243
|
+
* Notiz
|
|
1244
1244
|
*/
|
|
1245
|
-
|
|
1245
|
+
note: string;
|
|
1246
1246
|
|
|
1247
1247
|
/**
|
|
1248
|
-
*
|
|
1248
|
+
* Umkehrung der Steuerschuld nach §13b UStG?
|
|
1249
1249
|
*/
|
|
1250
|
-
|
|
1250
|
+
taxLiabilityReversed: boolean;
|
|
1251
1251
|
|
|
1252
1252
|
/**
|
|
1253
1253
|
* Erlaubte Arten der Kommissionierung
|
|
@@ -1648,11 +1648,6 @@ export interface ArticleCustomer {
|
|
|
1648
1648
|
*/
|
|
1649
1649
|
defaultGrossPrice: number;
|
|
1650
1650
|
|
|
1651
|
-
/**
|
|
1652
|
-
* Artikelnummer
|
|
1653
|
-
*/
|
|
1654
|
-
articleNumber: string;
|
|
1655
|
-
|
|
1656
1651
|
/**
|
|
1657
1652
|
* Abweichende Produktnummer
|
|
1658
1653
|
*/
|
|
@@ -1663,6 +1658,11 @@ export interface ArticleCustomer {
|
|
|
1663
1658
|
*/
|
|
1664
1659
|
priceDetermination: ArticleCustomerPriceDetermination;
|
|
1665
1660
|
|
|
1661
|
+
/**
|
|
1662
|
+
* Artikelnummer
|
|
1663
|
+
*/
|
|
1664
|
+
articleNumber: string;
|
|
1665
|
+
|
|
1666
1666
|
/**
|
|
1667
1667
|
* Abweichender Produktidentifer (z.B. Barcode)
|
|
1668
1668
|
*/
|
|
@@ -2092,14 +2092,14 @@ export interface ArticleSupplier {
|
|
|
2092
2092
|
accountDisplayName: string;
|
|
2093
2093
|
|
|
2094
2094
|
/**
|
|
2095
|
-
*
|
|
2095
|
+
* Soll die abweichende Produktbeschreibung verwendet werden (z.B. in Belegen)
|
|
2096
2096
|
*/
|
|
2097
|
-
|
|
2097
|
+
useSupplierArticleDescription: boolean;
|
|
2098
2098
|
|
|
2099
2099
|
/**
|
|
2100
|
-
*
|
|
2100
|
+
* Lieferanten-Meldebestand
|
|
2101
2101
|
*/
|
|
2102
|
-
|
|
2102
|
+
supplierReportingStock: number;
|
|
2103
2103
|
|
|
2104
2104
|
/**
|
|
2105
2105
|
* Soll der abweichende Produktidentifier verwendet werden (z.B. in einer Scanner-Erfassung)
|
|
@@ -2250,14 +2250,14 @@ export interface AssemblyComponentReturnLine {
|
|
|
2250
2250
|
quantity: number;
|
|
2251
2251
|
|
|
2252
2252
|
/**
|
|
2253
|
-
*
|
|
2253
|
+
* ID der Baugruppen-Quellposition
|
|
2254
2254
|
*/
|
|
2255
|
-
|
|
2255
|
+
sourceLineId: number;
|
|
2256
2256
|
|
|
2257
2257
|
/**
|
|
2258
|
-
*
|
|
2258
|
+
* Buchungen zu der Komponente
|
|
2259
2259
|
*/
|
|
2260
|
-
|
|
2260
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
2261
2261
|
|
|
2262
2262
|
/**
|
|
2263
2263
|
* ID der Komponente in der Baugruppen-Quellposition
|
|
@@ -2293,14 +2293,14 @@ export interface Asset {
|
|
|
2293
2293
|
custom: EavAsset;
|
|
2294
2294
|
|
|
2295
2295
|
/**
|
|
2296
|
-
*
|
|
2296
|
+
* Artikel
|
|
2297
2297
|
*/
|
|
2298
|
-
|
|
2298
|
+
articleRef: ApiObjectReference;
|
|
2299
2299
|
|
|
2300
2300
|
/**
|
|
2301
|
-
*
|
|
2301
|
+
* active
|
|
2302
2302
|
*/
|
|
2303
|
-
|
|
2303
|
+
active: boolean;
|
|
2304
2304
|
|
|
2305
2305
|
/**
|
|
2306
2306
|
* Ende Garantie
|
|
@@ -2905,14 +2905,14 @@ export interface CrmActivityType {
|
|
|
2905
2905
|
export interface CrmChecklistItem {
|
|
2906
2906
|
|
|
2907
2907
|
/**
|
|
2908
|
-
*
|
|
2908
|
+
* Ist das Element "angehakt"?
|
|
2909
2909
|
*/
|
|
2910
|
-
|
|
2910
|
+
checked: boolean;
|
|
2911
2911
|
|
|
2912
2912
|
/**
|
|
2913
|
-
*
|
|
2913
|
+
* Text des Checklisten-Elements
|
|
2914
2914
|
*/
|
|
2915
|
-
|
|
2915
|
+
memo: string;
|
|
2916
2916
|
|
|
2917
2917
|
/**
|
|
2918
2918
|
* Unique identifier of the Object
|
|
@@ -3028,14 +3028,14 @@ export interface CrmDeal {
|
|
|
3028
3028
|
info: MetaInfo;
|
|
3029
3029
|
|
|
3030
3030
|
/**
|
|
3031
|
-
*
|
|
3031
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3032
3032
|
*/
|
|
3033
|
-
|
|
3033
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3034
3034
|
|
|
3035
3035
|
/**
|
|
3036
|
-
*
|
|
3036
|
+
* Zu Erledigen von Benutzer (zugeordneter Benutzer)
|
|
3037
3037
|
*/
|
|
3038
|
-
|
|
3038
|
+
assignedUserRef: ApiObjectReference;
|
|
3039
3039
|
|
|
3040
3040
|
/**
|
|
3041
3041
|
* Chance (in Prozent)
|
|
@@ -3379,14 +3379,14 @@ export interface CrmProject {
|
|
|
3379
3379
|
info: MetaInfo;
|
|
3380
3380
|
|
|
3381
3381
|
/**
|
|
3382
|
-
*
|
|
3382
|
+
* Weitere Teilnehmer vom Auftraggeber
|
|
3383
3383
|
*/
|
|
3384
|
-
|
|
3384
|
+
additionalParticipantsOfCustomer: Array<CrmParticipant>;
|
|
3385
3385
|
|
|
3386
3386
|
/**
|
|
3387
|
-
*
|
|
3387
|
+
* Projektleiter vom Auftraggeber
|
|
3388
3388
|
*/
|
|
3389
|
-
|
|
3389
|
+
projectManagerOfCustomer: CrmParticipant;
|
|
3390
3390
|
|
|
3391
3391
|
/**
|
|
3392
3392
|
* Übergeordnete CRM-Objekte
|
|
@@ -3630,6 +3630,11 @@ export interface CrmSubType {
|
|
|
3630
3630
|
|
|
3631
3631
|
export interface CrmTask {
|
|
3632
3632
|
|
|
3633
|
+
/**
|
|
3634
|
+
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3635
|
+
*/
|
|
3636
|
+
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3637
|
+
|
|
3633
3638
|
/**
|
|
3634
3639
|
* Liste von Erinnerungen
|
|
3635
3640
|
*/
|
|
@@ -3640,11 +3645,6 @@ export interface CrmTask {
|
|
|
3640
3645
|
*/
|
|
3641
3646
|
customerOfferRef: DocumentRef;
|
|
3642
3647
|
|
|
3643
|
-
/**
|
|
3644
|
-
* Verantwortlicher Teilnehmer (Ansprechpartner)
|
|
3645
|
-
*/
|
|
3646
|
-
mainResponsibleParticipantRef: ApiObjectReference;
|
|
3647
|
-
|
|
3648
3648
|
/**
|
|
3649
3649
|
* Notizen
|
|
3650
3650
|
*/
|
|
@@ -4015,14 +4015,14 @@ export interface CurrencyReference {
|
|
|
4015
4015
|
export interface Customer {
|
|
4016
4016
|
|
|
4017
4017
|
/**
|
|
4018
|
-
*
|
|
4018
|
+
* reference to customer group
|
|
4019
4019
|
*/
|
|
4020
|
-
|
|
4020
|
+
customerGroupRef: ApiObjectReference;
|
|
4021
4021
|
|
|
4022
4022
|
/**
|
|
4023
|
-
*
|
|
4023
|
+
* Option für die Stapelverarbeitung
|
|
4024
4024
|
*/
|
|
4025
|
-
|
|
4025
|
+
stackProcessingType: AccountOrderStackProcessingType;
|
|
4026
4026
|
|
|
4027
4027
|
/**
|
|
4028
4028
|
* Cron-Ausdruck zur Berechnung der Sammelabrechnung
|
|
@@ -4040,14 +4040,14 @@ export interface Customer {
|
|
|
4040
4040
|
dueDate: ScriptingDate;
|
|
4041
4041
|
|
|
4042
4042
|
/**
|
|
4043
|
-
*
|
|
4043
|
+
* collective billable
|
|
4044
4044
|
*/
|
|
4045
|
-
|
|
4045
|
+
collectiveBillable: boolean;
|
|
4046
4046
|
|
|
4047
4047
|
/**
|
|
4048
|
-
*
|
|
4048
|
+
* Maximal mögliche Lieferungen
|
|
4049
4049
|
*/
|
|
4050
|
-
|
|
4050
|
+
maxDeliveries: number;
|
|
4051
4051
|
|
|
4052
4052
|
/**
|
|
4053
4053
|
* Hat der Kunde eine Liefersperre?
|
|
@@ -4100,14 +4100,14 @@ export interface Customer {
|
|
|
4100
4100
|
info: MetaInfo;
|
|
4101
4101
|
|
|
4102
4102
|
/**
|
|
4103
|
-
*
|
|
4103
|
+
* reference to the delivery method
|
|
4104
4104
|
*/
|
|
4105
|
-
|
|
4105
|
+
deliveryMethodRef: ApiObjectReference;
|
|
4106
4106
|
|
|
4107
4107
|
/**
|
|
4108
|
-
*
|
|
4108
|
+
* tax able or tax free
|
|
4109
4109
|
*/
|
|
4110
|
-
|
|
4110
|
+
taxable: boolean;
|
|
4111
4111
|
|
|
4112
4112
|
/**
|
|
4113
4113
|
* active true/false
|
|
@@ -4402,14 +4402,14 @@ export interface DeliveryTerm {
|
|
|
4402
4402
|
label: string;
|
|
4403
4403
|
|
|
4404
4404
|
/**
|
|
4405
|
-
*
|
|
4405
|
+
* Sprache des Accounts
|
|
4406
4406
|
*/
|
|
4407
|
-
|
|
4407
|
+
languageCode: string;
|
|
4408
4408
|
|
|
4409
4409
|
/**
|
|
4410
|
-
*
|
|
4410
|
+
* information, when the shipping charges should be calculated
|
|
4411
4411
|
*/
|
|
4412
|
-
|
|
4412
|
+
calculateFreightChargesWithType: CalculateFreightChargesWithType;
|
|
4413
4413
|
|
|
4414
4414
|
/**
|
|
4415
4415
|
* calculate shipping charges per parcel
|
|
@@ -4422,14 +4422,14 @@ export interface DeliveryTerm {
|
|
|
4422
4422
|
version: number;
|
|
4423
4423
|
|
|
4424
4424
|
/**
|
|
4425
|
-
*
|
|
4425
|
+
* translations
|
|
4426
4426
|
*/
|
|
4427
|
-
|
|
4427
|
+
translations: Array<DocumentTypeTerm>;
|
|
4428
4428
|
|
|
4429
4429
|
/**
|
|
4430
|
-
*
|
|
4430
|
+
* information, how the shipping charges should be calculated
|
|
4431
4431
|
*/
|
|
4432
|
-
|
|
4432
|
+
calculateFreightChargesFromType: CalculateFreightChargesFromType;
|
|
4433
4433
|
|
|
4434
4434
|
/**
|
|
4435
4435
|
* Lieferarten
|
|
@@ -4472,14 +4472,14 @@ export interface DmsOutputStream {
|
|
|
4472
4472
|
export interface Document {
|
|
4473
4473
|
|
|
4474
4474
|
/**
|
|
4475
|
-
*
|
|
4475
|
+
* Bestätigtes Lieferende (nur wenn bestätigtes Lieferdatum gesetzt)
|
|
4476
4476
|
*/
|
|
4477
|
-
|
|
4477
|
+
confirmedDeliveryDateEnd: ScriptingDate;
|
|
4478
4478
|
|
|
4479
4479
|
/**
|
|
4480
|
-
*
|
|
4480
|
+
* Referenz zum Rechnungskonto
|
|
4481
4481
|
*/
|
|
4482
|
-
|
|
4482
|
+
billingAccountRef: ApiObjectReference;
|
|
4483
4483
|
|
|
4484
4484
|
/**
|
|
4485
4485
|
* Externe Belegnummer
|
|
@@ -4517,14 +4517,14 @@ export interface Document {
|
|
|
4517
4517
|
totalVat: number;
|
|
4518
4518
|
|
|
4519
4519
|
/**
|
|
4520
|
-
*
|
|
4520
|
+
* Name der bestellenden Person
|
|
4521
4521
|
*/
|
|
4522
|
-
|
|
4522
|
+
orderedBy: string;
|
|
4523
4523
|
|
|
4524
4524
|
/**
|
|
4525
|
-
*
|
|
4525
|
+
* Standardlager für neue Positionen
|
|
4526
4526
|
*/
|
|
4527
|
-
|
|
4527
|
+
defaultStorageRef: ApiObjectReference;
|
|
4528
4528
|
|
|
4529
4529
|
/**
|
|
4530
4530
|
* Lieferadresse
|
|
@@ -4630,14 +4630,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4630
4630
|
accountId: number;
|
|
4631
4631
|
|
|
4632
4632
|
/**
|
|
4633
|
-
* Länderkennzeichen
|
|
4633
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3)
|
|
4634
4634
|
*/
|
|
4635
|
-
|
|
4635
|
+
performanceCountryCode: string;
|
|
4636
4636
|
|
|
4637
4637
|
/**
|
|
4638
|
-
* Länderkennzeichen
|
|
4638
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3)
|
|
4639
4639
|
*/
|
|
4640
|
-
|
|
4640
|
+
sourceCountryCode: string;
|
|
4641
4641
|
|
|
4642
4642
|
/**
|
|
4643
4643
|
* Vereinbartes Anzahlungsdatum
|
|
@@ -4685,14 +4685,14 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4685
4685
|
supplierNumber: string;
|
|
4686
4686
|
|
|
4687
4687
|
/**
|
|
4688
|
-
*
|
|
4688
|
+
* Gesamtpreis brutto
|
|
4689
4689
|
*/
|
|
4690
|
-
|
|
4690
|
+
totalGrossPrice: number;
|
|
4691
4691
|
|
|
4692
4692
|
/**
|
|
4693
|
-
*
|
|
4693
|
+
* Ist der Beleg zur Lieferung freigegeben?
|
|
4694
4694
|
*/
|
|
4695
|
-
|
|
4695
|
+
deliveryApproved: boolean;
|
|
4696
4696
|
|
|
4697
4697
|
/**
|
|
4698
4698
|
* Kassen-Zahlungspositionen
|
|
@@ -4700,11 +4700,9 @@ negativer Wert: überzahlter Betrag / Rückgeld
|
|
|
4700
4700
|
posPayments: Array<DocumentPosPayment>;
|
|
4701
4701
|
|
|
4702
4702
|
/**
|
|
4703
|
-
*
|
|
4704
|
-
true wenn die Quittung bezahlt ist
|
|
4705
|
-
|
|
4703
|
+
* Kundennummer beim Lieferanten
|
|
4706
4704
|
*/
|
|
4707
|
-
|
|
4705
|
+
ourCustomerNumber: string;
|
|
4708
4706
|
|
|
4709
4707
|
/**
|
|
4710
4708
|
* Maximal mögliche Lieferungen
|
|
@@ -4712,9 +4710,11 @@ true wenn die Quittung bezahlt ist
|
|
|
4712
4710
|
maxDeliveries: number;
|
|
4713
4711
|
|
|
4714
4712
|
/**
|
|
4715
|
-
*
|
|
4713
|
+
* Ist die Quittung bezahlt
|
|
4714
|
+
true wenn die Quittung bezahlt ist
|
|
4715
|
+
|
|
4716
4716
|
*/
|
|
4717
|
-
|
|
4717
|
+
posReceiptPayed: boolean;
|
|
4718
4718
|
|
|
4719
4719
|
/**
|
|
4720
4720
|
* Quittung: Summe Zahlbetrag
|
|
@@ -4762,14 +4762,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4762
4762
|
calculationMode: CalculationMode;
|
|
4763
4763
|
|
|
4764
4764
|
/**
|
|
4765
|
-
*
|
|
4765
|
+
* Referenz auf Zahlungsbedingung
|
|
4766
4766
|
*/
|
|
4767
|
-
|
|
4767
|
+
paymentTermRef: PaymentTermRef;
|
|
4768
4768
|
|
|
4769
4769
|
/**
|
|
4770
|
-
*
|
|
4770
|
+
* Wird vom Workflow verarbeitet?
|
|
4771
4771
|
*/
|
|
4772
|
-
|
|
4772
|
+
processedByWorkflow: boolean;
|
|
4773
4773
|
|
|
4774
4774
|
/**
|
|
4775
4775
|
* Preisanpassungen - Beleg Basiswährung
|
|
@@ -4872,14 +4872,14 @@ true wenn die Quittung bezahlt ist
|
|
|
4872
4872
|
dropShipping: boolean;
|
|
4873
4873
|
|
|
4874
4874
|
/**
|
|
4875
|
-
*
|
|
4875
|
+
* Gesamtpreis netto
|
|
4876
4876
|
*/
|
|
4877
|
-
|
|
4877
|
+
totalNetPrice: number;
|
|
4878
4878
|
|
|
4879
4879
|
/**
|
|
4880
|
-
*
|
|
4880
|
+
* Validierungsstatus bei elektronischen Rechnungen
|
|
4881
4881
|
*/
|
|
4882
|
-
|
|
4882
|
+
valitoolValidationState: EInvoiceValidationState;
|
|
4883
4883
|
|
|
4884
4884
|
/**
|
|
4885
4885
|
* Ist der Beleg veröffentlicht (gedruckt, per Mail versendet)?
|
|
@@ -5006,6 +5006,11 @@ true wenn die Quittung bezahlt ist
|
|
|
5006
5006
|
*/
|
|
5007
5007
|
posReceiptChangeAmount: number;
|
|
5008
5008
|
|
|
5009
|
+
/**
|
|
5010
|
+
* Referenz auf Lieferbedingung
|
|
5011
|
+
*/
|
|
5012
|
+
deliveryTermRef: ApiObjectReference;
|
|
5013
|
+
|
|
5009
5014
|
/**
|
|
5010
5015
|
* Ist die Quittung ausbalanciert, also bezahlt und kein Rückgeld
|
|
5011
5016
|
true wenn die Quittung ausbalanciert ist
|
|
@@ -5013,11 +5018,6 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5013
5018
|
*/
|
|
5014
5019
|
posReceiptBalanced: boolean;
|
|
5015
5020
|
|
|
5016
|
-
/**
|
|
5017
|
-
* Referenz auf Lieferbedingung
|
|
5018
|
-
*/
|
|
5019
|
-
deliveryTermRef: ApiObjectReference;
|
|
5020
|
-
|
|
5021
5021
|
/**
|
|
5022
5022
|
* Gesamtbruttogewicht
|
|
5023
5023
|
*/
|
|
@@ -5038,25 +5038,25 @@ true wenn die Quittung ausbalanciert ist
|
|
|
5038
5038
|
*/
|
|
5039
5039
|
priceModifiers: Array<DocumentPriceModifier>;
|
|
5040
5040
|
|
|
5041
|
-
/**
|
|
5042
|
-
* Status der USt-ID-Prüfung
|
|
5043
|
-
*/
|
|
5044
|
-
taxIdVerificationState: TaxIdVerificationState;
|
|
5045
|
-
|
|
5046
5041
|
/**
|
|
5047
5042
|
* Rechnungsadresse
|
|
5048
5043
|
*/
|
|
5049
5044
|
billingAddress: DocumentAddress;
|
|
5050
5045
|
|
|
5051
5046
|
/**
|
|
5052
|
-
*
|
|
5047
|
+
* Status der USt-ID-Prüfung
|
|
5053
5048
|
*/
|
|
5054
|
-
|
|
5049
|
+
taxIdVerificationState: TaxIdVerificationState;
|
|
5055
5050
|
|
|
5056
5051
|
/**
|
|
5057
5052
|
* Report-Gruppe, falls vom Standard abweichend
|
|
5058
5053
|
*/
|
|
5059
5054
|
reportGroupRef: ApiObjectReference;
|
|
5055
|
+
|
|
5056
|
+
/**
|
|
5057
|
+
* Bestellt durch Ansprechpartner
|
|
5058
|
+
*/
|
|
5059
|
+
orderedByPersonRef: ApiObjectReference;
|
|
5060
5060
|
}
|
|
5061
5061
|
|
|
5062
5062
|
export interface DocumentAdditionalInfo {
|
|
@@ -5087,14 +5087,14 @@ export interface DocumentAdditionalInfo {
|
|
|
5087
5087
|
buyerReferenceOrigin: BuyerReferenceOrigin;
|
|
5088
5088
|
|
|
5089
5089
|
/**
|
|
5090
|
-
*
|
|
5090
|
+
* Ziele für den Wareneingang für den gesamten Beleg
|
|
5091
5091
|
*/
|
|
5092
|
-
|
|
5092
|
+
incomingGoodsTarget: DocumentAdditionalInfo$IncomingGoodsTarget;
|
|
5093
5093
|
|
|
5094
5094
|
/**
|
|
5095
|
-
*
|
|
5095
|
+
* Herkunft des Berechnungsmodus
|
|
5096
5096
|
*/
|
|
5097
|
-
|
|
5097
|
+
calculationModeOrigin: CalculationModeOrigin;
|
|
5098
5098
|
|
|
5099
5099
|
/**
|
|
5100
5100
|
* Herkunft des E-Rechnungs-Profils
|
|
@@ -5194,14 +5194,14 @@ export interface DocumentAddress {
|
|
|
5194
5194
|
postOfficeBox: string;
|
|
5195
5195
|
|
|
5196
5196
|
/**
|
|
5197
|
-
*
|
|
5197
|
+
* country code IsoAlpha3
|
|
5198
5198
|
*/
|
|
5199
|
-
|
|
5199
|
+
countryCode: string;
|
|
5200
5200
|
|
|
5201
5201
|
/**
|
|
5202
|
-
*
|
|
5202
|
+
* Street
|
|
5203
5203
|
*/
|
|
5204
|
-
|
|
5204
|
+
street: string;
|
|
5205
5205
|
|
|
5206
5206
|
/**
|
|
5207
5207
|
* Unique identifier of the Object
|
|
@@ -5409,14 +5409,14 @@ export interface DocumentContractDetail {
|
|
|
5409
5409
|
runtimeToDate: ScriptingDate;
|
|
5410
5410
|
|
|
5411
5411
|
/**
|
|
5412
|
-
*
|
|
5412
|
+
* Nächste Fälligkeit
|
|
5413
5413
|
*/
|
|
5414
|
-
|
|
5414
|
+
nextDueDate: ScriptingDate;
|
|
5415
5415
|
|
|
5416
5416
|
/**
|
|
5417
|
-
*
|
|
5417
|
+
* Letztmöglicher kündigungstermin des Anbieters
|
|
5418
5418
|
*/
|
|
5419
|
-
|
|
5419
|
+
lastProviderCancellationDate: ScriptingDate;
|
|
5420
5420
|
|
|
5421
5421
|
/**
|
|
5422
5422
|
* Letztmöglicher kündigungstermin des Kunden
|
|
@@ -5617,14 +5617,14 @@ export interface DocumentLine {
|
|
|
5617
5617
|
number: string;
|
|
5618
5618
|
|
|
5619
5619
|
/**
|
|
5620
|
-
*
|
|
5620
|
+
* Gesamtbruttogewicht
|
|
5621
5621
|
*/
|
|
5622
|
-
|
|
5622
|
+
totalGrossWeight: number;
|
|
5623
5623
|
|
|
5624
5624
|
/**
|
|
5625
|
-
*
|
|
5625
|
+
* Referenz zur Kundenauftragszeile
|
|
5626
5626
|
*/
|
|
5627
|
-
|
|
5627
|
+
customerOrderLineRef: DocumentLineRef;
|
|
5628
5628
|
|
|
5629
5629
|
/**
|
|
5630
5630
|
* Referenz zum auszugleichenden Offenen Posten (nur bei OPEN_ITEM_SETTLEMENT)
|
|
@@ -5666,6 +5666,11 @@ export interface DocumentLine {
|
|
|
5666
5666
|
*/
|
|
5667
5667
|
id: number;
|
|
5668
5668
|
|
|
5669
|
+
/**
|
|
5670
|
+
* Serientyp
|
|
5671
|
+
*/
|
|
5672
|
+
serialType: ArticleSerialType;
|
|
5673
|
+
|
|
5669
5674
|
/**
|
|
5670
5675
|
* Preis pro Einheit in Basiswährung
|
|
5671
5676
|
*/
|
|
@@ -5676,11 +5681,6 @@ export interface DocumentLine {
|
|
|
5676
5681
|
*/
|
|
5677
5682
|
positionOfArticleLine: number;
|
|
5678
5683
|
|
|
5679
|
-
/**
|
|
5680
|
-
* Serientyp
|
|
5681
|
-
*/
|
|
5682
|
-
serialType: ArticleSerialType;
|
|
5683
|
-
|
|
5684
5684
|
/**
|
|
5685
5685
|
* Preiseinheit
|
|
5686
5686
|
*/
|
|
@@ -5797,14 +5797,14 @@ export interface DocumentLine {
|
|
|
5797
5797
|
netWeightUnit: UnitTypeReference;
|
|
5798
5798
|
|
|
5799
5799
|
/**
|
|
5800
|
-
*
|
|
5800
|
+
* Vertragsinformationen
|
|
5801
5801
|
*/
|
|
5802
|
-
|
|
5802
|
+
contractDetail: DocumentContractDetail;
|
|
5803
5803
|
|
|
5804
5804
|
/**
|
|
5805
|
-
*
|
|
5805
|
+
* Nettoverkaufswert der Position in Basiswährung
|
|
5806
5806
|
*/
|
|
5807
|
-
|
|
5807
|
+
baseSalesValueNet: number;
|
|
5808
5808
|
|
|
5809
5809
|
/**
|
|
5810
5810
|
* Versandkosten-Details; nur gesetzt für Versandkostenpositionen, die als nummerierte Belegposition geführt werden (z.B. Sammelrechnung)
|
|
@@ -5892,14 +5892,14 @@ export interface DocumentLine {
|
|
|
5892
5892
|
commissions: Array<DocumentLineCommission>;
|
|
5893
5893
|
|
|
5894
5894
|
/**
|
|
5895
|
-
*
|
|
5895
|
+
* Positionstyp
|
|
5896
5896
|
*/
|
|
5897
|
-
|
|
5897
|
+
lineType: DocumentLineType;
|
|
5898
5898
|
|
|
5899
5899
|
/**
|
|
5900
|
-
*
|
|
5900
|
+
* Gesamtpreis Position in Basiswährung
|
|
5901
5901
|
*/
|
|
5902
|
-
|
|
5902
|
+
baseTotalLinePrice: number;
|
|
5903
5903
|
|
|
5904
5904
|
/**
|
|
5905
5905
|
* vorgeorderte Menge in Pickvorgang
|
|
@@ -5962,14 +5962,14 @@ export interface DocumentLine {
|
|
|
5962
5962
|
position: number;
|
|
5963
5963
|
|
|
5964
5964
|
/**
|
|
5965
|
-
*
|
|
5965
|
+
* Soll die DocumentLine über die Komponenten neu berechnet werden?
|
|
5966
5966
|
*/
|
|
5967
|
-
|
|
5967
|
+
recalcLinePriceViaComponents: boolean;
|
|
5968
5968
|
|
|
5969
5969
|
/**
|
|
5970
|
-
*
|
|
5970
|
+
* Buchungen
|
|
5971
5971
|
*/
|
|
5972
|
-
|
|
5972
|
+
bookings: Array<DocumentLineBooking>;
|
|
5973
5973
|
|
|
5974
5974
|
/**
|
|
5975
5975
|
* unit gross Volume in cubic meters
|
|
@@ -5997,14 +5997,14 @@ export interface DocumentLine {
|
|
|
5997
5997
|
description: string;
|
|
5998
5998
|
|
|
5999
5999
|
/**
|
|
6000
|
-
*
|
|
6000
|
+
* Referenz zum Lager
|
|
6001
6001
|
*/
|
|
6002
|
-
|
|
6002
|
+
storage: ApiObjectReference;
|
|
6003
6003
|
|
|
6004
6004
|
/**
|
|
6005
|
-
*
|
|
6005
|
+
* Preisherkunft
|
|
6006
6006
|
*/
|
|
6007
|
-
|
|
6007
|
+
priceOrigin: ProductPriceOrigin;
|
|
6008
6008
|
|
|
6009
6009
|
/**
|
|
6010
6010
|
* Rohertragsermittlung
|
|
@@ -6092,14 +6092,14 @@ export interface DocumentLine {
|
|
|
6092
6092
|
grossWeight: number;
|
|
6093
6093
|
|
|
6094
6094
|
/**
|
|
6095
|
-
*
|
|
6095
|
+
* angewendete Preisänderungen
|
|
6096
6096
|
*/
|
|
6097
|
-
|
|
6097
|
+
priceModifiers: Array<DocumentPriceModifier>;
|
|
6098
6098
|
|
|
6099
6099
|
/**
|
|
6100
|
-
*
|
|
6100
|
+
* Externe Artikelbeschreibung
|
|
6101
6101
|
*/
|
|
6102
|
-
|
|
6102
|
+
externalArticleDescription: string;
|
|
6103
6103
|
|
|
6104
6104
|
/**
|
|
6105
6105
|
* Enthält die Ergebnisse von vorherigen Entscheidungen des Benutzers zu dieser DocumentLine
|
|
@@ -6478,14 +6478,14 @@ export interface DocumentLineFabricationDetail {
|
|
|
6478
6478
|
quantityDefective: number;
|
|
6479
6479
|
|
|
6480
6480
|
/**
|
|
6481
|
-
*
|
|
6481
|
+
* Produzierte Seriennummern
|
|
6482
6482
|
*/
|
|
6483
|
-
|
|
6483
|
+
serialNumbers: Array<DocumentLineFabricationDetailSerialNumber>;
|
|
6484
6484
|
|
|
6485
6485
|
/**
|
|
6486
|
-
*
|
|
6486
|
+
* Freifeld
|
|
6487
6487
|
*/
|
|
6488
|
-
|
|
6488
|
+
custom: EavFabricationline;
|
|
6489
6489
|
|
|
6490
6490
|
/**
|
|
6491
6491
|
* Menge produziert
|
|
@@ -6584,14 +6584,14 @@ export interface DocumentLinePosDetail {
|
|
|
6584
6584
|
deletable: boolean;
|
|
6585
6585
|
|
|
6586
6586
|
/**
|
|
6587
|
-
*
|
|
6587
|
+
* Status der externen Zahlung
|
|
6588
6588
|
*/
|
|
6589
|
-
|
|
6589
|
+
externalPaymentStatus: PosPaymentStatus;
|
|
6590
6590
|
|
|
6591
6591
|
/**
|
|
6592
|
-
*
|
|
6592
|
+
* Typ der Einlage/Ausgabe
|
|
6593
6593
|
*/
|
|
6594
|
-
|
|
6594
|
+
depositExpenseTypeId: number;
|
|
6595
6595
|
|
|
6596
6596
|
/**
|
|
6597
6597
|
* Abschöpfung auf Betrag (Modus BALANCE) — Restbetrag, der in der Kasse verbleibt
|
|
@@ -6629,14 +6629,14 @@ export interface DocumentLinePosDetail {
|
|
|
6629
6629
|
balanceBeforeWithdrawal: number;
|
|
6630
6630
|
|
|
6631
6631
|
/**
|
|
6632
|
-
*
|
|
6632
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6633
6633
|
*/
|
|
6634
|
-
|
|
6634
|
+
externalPaymentId: string;
|
|
6635
6635
|
|
|
6636
6636
|
/**
|
|
6637
|
-
*
|
|
6637
|
+
* Typ der Position
|
|
6638
6638
|
*/
|
|
6639
|
-
|
|
6639
|
+
posLineType: PosLineType;
|
|
6640
6640
|
|
|
6641
6641
|
/**
|
|
6642
6642
|
* Unique identifier of the Object
|
|
@@ -6750,14 +6750,14 @@ export interface DocumentLineReturnDetail {
|
|
|
6750
6750
|
customerShareOnReduction: number;
|
|
6751
6751
|
|
|
6752
6752
|
/**
|
|
6753
|
-
*
|
|
6753
|
+
* Lieferbedingung für die Retoure (wie der Kunde zurücksendet)
|
|
6754
6754
|
*/
|
|
6755
|
-
|
|
6755
|
+
deliveryTermRef: ApiObjectReference;
|
|
6756
6756
|
|
|
6757
6757
|
/**
|
|
6758
|
-
*
|
|
6758
|
+
* Auf Retoure warten vor Warenersatz? (nur bei GOODS_EXCHANGE_ITEM_GETS_SEND_BACK)
|
|
6759
6759
|
*/
|
|
6760
|
-
|
|
6760
|
+
waitForReturnBeforeExchange: boolean;
|
|
6761
6761
|
|
|
6762
6762
|
/**
|
|
6763
6763
|
* Referenz auf Retourengrund
|
|
@@ -6940,14 +6940,14 @@ export interface DocumentPosPayment {
|
|
|
6940
6940
|
version: number;
|
|
6941
6941
|
|
|
6942
6942
|
/**
|
|
6943
|
-
*
|
|
6943
|
+
* Zahlungsart
|
|
6944
6944
|
*/
|
|
6945
|
-
|
|
6945
|
+
posPaymentMethodRef: ApiObjectReference;
|
|
6946
6946
|
|
|
6947
6947
|
/**
|
|
6948
|
-
*
|
|
6948
|
+
* Abschöpfungsbetrag. Im Modus MANUAL vom Anwender vorgegeben; in den Modi FULL/BALANCE/NONE vom Backend aus aktuellem Saldo berechnet
|
|
6949
6949
|
*/
|
|
6950
|
-
|
|
6950
|
+
withdrawalAmount: number;
|
|
6951
6951
|
|
|
6952
6952
|
/**
|
|
6953
6953
|
* Fehlermeldung vom Payment-Backend (nur bei fehlgeschlagener Zahlung)
|
|
@@ -6960,14 +6960,14 @@ export interface DocumentPosPayment {
|
|
|
6960
6960
|
balanceBeforeWithdrawal: number;
|
|
6961
6961
|
|
|
6962
6962
|
/**
|
|
6963
|
-
*
|
|
6963
|
+
* Externe Payment-ID für Verbindung zum Payment-Backend
|
|
6964
6964
|
*/
|
|
6965
|
-
|
|
6965
|
+
externalPaymentId: string;
|
|
6966
6966
|
|
|
6967
6967
|
/**
|
|
6968
|
-
*
|
|
6968
|
+
* Typ der Position
|
|
6969
6969
|
*/
|
|
6970
|
-
|
|
6970
|
+
posLineType: PosLineType;
|
|
6971
6971
|
|
|
6972
6972
|
/**
|
|
6973
6973
|
* Unique identifier of the Object
|
|
@@ -7126,14 +7126,14 @@ export interface DocumentShippingCost {
|
|
|
7126
7126
|
manualCosts: boolean;
|
|
7127
7127
|
|
|
7128
7128
|
/**
|
|
7129
|
-
*
|
|
7129
|
+
* Texte
|
|
7130
7130
|
*/
|
|
7131
|
-
|
|
7131
|
+
texts: Array<DocumentText>;
|
|
7132
7132
|
|
|
7133
7133
|
/**
|
|
7134
|
-
*
|
|
7134
|
+
* Keine Versandkosten (freier Versand)
|
|
7135
7135
|
*/
|
|
7136
|
-
|
|
7136
|
+
freeShipping: boolean;
|
|
7137
7137
|
|
|
7138
7138
|
/**
|
|
7139
7139
|
* skontierbar
|
|
@@ -7241,14 +7241,14 @@ export interface DocumentText {
|
|
|
7241
7241
|
transferableIntoSubsequentDocuments: boolean;
|
|
7242
7242
|
|
|
7243
7243
|
/**
|
|
7244
|
-
*
|
|
7244
|
+
* position relative to the product line OR Document. For usage within text-line, this position is irrelevant
|
|
7245
7245
|
*/
|
|
7246
|
-
|
|
7246
|
+
textPosition: TextPosition;
|
|
7247
7247
|
|
|
7248
7248
|
/**
|
|
7249
|
-
*
|
|
7249
|
+
* Wurde entfernt und soll deshalb nicht mehr angezeigt werden.
|
|
7250
7250
|
*/
|
|
7251
|
-
|
|
7251
|
+
deleted: boolean;
|
|
7252
7252
|
|
|
7253
7253
|
/**
|
|
7254
7254
|
* textBaustein Vorlage
|
|
@@ -7951,14 +7951,14 @@ export const enum FabricationOfComponents {
|
|
|
7951
7951
|
export interface FabricationProduceRequest {
|
|
7952
7952
|
|
|
7953
7953
|
/**
|
|
7954
|
-
*
|
|
7954
|
+
* Zu produzierende Menge
|
|
7955
7955
|
*/
|
|
7956
|
-
|
|
7956
|
+
quantity: number;
|
|
7957
7957
|
|
|
7958
7958
|
/**
|
|
7959
|
-
*
|
|
7959
|
+
* Material automatisch bestätigen
|
|
7960
7960
|
*/
|
|
7961
|
-
|
|
7961
|
+
autoCommitComponents: boolean;
|
|
7962
7962
|
|
|
7963
7963
|
/**
|
|
7964
7964
|
* Für die Produktion zu verwendendes Material
|
|
@@ -8012,14 +8012,14 @@ export interface FabricationRevertRequest {
|
|
|
8012
8012
|
quantity: number;
|
|
8013
8013
|
|
|
8014
8014
|
/**
|
|
8015
|
-
*
|
|
8015
|
+
* ID der zu stornierenden Position
|
|
8016
8016
|
*/
|
|
8017
|
-
|
|
8017
|
+
documentLineId: number;
|
|
8018
8018
|
|
|
8019
8019
|
/**
|
|
8020
|
-
*
|
|
8020
|
+
* Material automatisch stornieren
|
|
8021
8021
|
*/
|
|
8022
|
-
|
|
8022
|
+
autoRevertComponents: boolean;
|
|
8023
8023
|
|
|
8024
8024
|
/**
|
|
8025
8025
|
* Zu stornierende Seriennummern
|
|
@@ -8364,14 +8364,14 @@ export interface OpenItem {
|
|
|
8364
8364
|
paymentDueDate: ScriptingDate;
|
|
8365
8365
|
|
|
8366
8366
|
/**
|
|
8367
|
-
* Länderkennzeichen
|
|
8367
|
+
* Länderkennzeichen Leistungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8368
8368
|
*/
|
|
8369
|
-
|
|
8369
|
+
performanceCountryCode: string;
|
|
8370
8370
|
|
|
8371
8371
|
/**
|
|
8372
|
-
* Länderkennzeichen
|
|
8372
|
+
* Länderkennzeichen Ursprungsland (ISO Alpha-3, von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
8373
8373
|
*/
|
|
8374
|
-
|
|
8374
|
+
sourceCountryCode: string;
|
|
8375
8375
|
|
|
8376
8376
|
/**
|
|
8377
8377
|
* Valutadatum schreibgeschützt
|
|
@@ -8479,14 +8479,14 @@ export interface OpenItem {
|
|
|
8479
8479
|
sumFee: number;
|
|
8480
8480
|
|
|
8481
8481
|
/**
|
|
8482
|
-
*
|
|
8482
|
+
* Zahlungsplan
|
|
8483
8483
|
*/
|
|
8484
|
-
|
|
8484
|
+
paymentPlan: OpenItemPaymentPlan;
|
|
8485
8485
|
|
|
8486
8486
|
/**
|
|
8487
|
-
*
|
|
8487
|
+
* The full amount of the payment
|
|
8488
8488
|
*/
|
|
8489
|
-
|
|
8489
|
+
fullPaymentAmount: number;
|
|
8490
8490
|
|
|
8491
8491
|
/**
|
|
8492
8492
|
* Zahlungssperre
|
|
@@ -8519,14 +8519,14 @@ export interface OpenItem {
|
|
|
8519
8519
|
baseSumDiscount: number;
|
|
8520
8520
|
|
|
8521
8521
|
/**
|
|
8522
|
-
*
|
|
8522
|
+
* Summe der Mahngebühren und Zinsen in Basiswährung
|
|
8523
8523
|
*/
|
|
8524
|
-
|
|
8524
|
+
baseSumDunnings: number;
|
|
8525
8525
|
|
|
8526
8526
|
/**
|
|
8527
|
-
*
|
|
8527
|
+
* Zahlungsvorlage
|
|
8528
8528
|
*/
|
|
8529
|
-
|
|
8529
|
+
paymentTemplateRef: ApiObjectReference;
|
|
8530
8530
|
|
|
8531
8531
|
/**
|
|
8532
8532
|
* Rechnungsbetrag
|
|
@@ -8539,14 +8539,14 @@ export interface OpenItem {
|
|
|
8539
8539
|
taxRateRef: ApiObjectReference;
|
|
8540
8540
|
|
|
8541
8541
|
/**
|
|
8542
|
-
*
|
|
8542
|
+
* Anzahlungsrechnung
|
|
8543
8543
|
*/
|
|
8544
|
-
|
|
8544
|
+
depositInvoice: ApiObjectReference;
|
|
8545
8545
|
|
|
8546
8546
|
/**
|
|
8547
|
-
*
|
|
8547
|
+
* Basiswährung des offenen Postens (ISO-A3)
|
|
8548
8548
|
*/
|
|
8549
|
-
|
|
8549
|
+
baseCurrencyCode: string;
|
|
8550
8550
|
|
|
8551
8551
|
/**
|
|
8552
8552
|
* Steuerstatus (von außen setzbar, wenn kein Beleg vorhanden ist)
|
|
@@ -9022,14 +9022,14 @@ export interface PaymentMethod {
|
|
|
9022
9022
|
daysToAddForFollowup: number;
|
|
9023
9023
|
|
|
9024
9024
|
/**
|
|
9025
|
-
*
|
|
9025
|
+
* external Payment Id
|
|
9026
9026
|
*/
|
|
9027
|
-
|
|
9027
|
+
externalPaymentId: string;
|
|
9028
9028
|
|
|
9029
9029
|
/**
|
|
9030
|
-
*
|
|
9030
|
+
* Die Business Transaction
|
|
9031
9031
|
*/
|
|
9032
|
-
|
|
9032
|
+
businessTransaction: ApiObjectReference;
|
|
9033
9033
|
|
|
9034
9034
|
/**
|
|
9035
9035
|
* Unique identifier of the Object
|
|
@@ -9112,26 +9112,26 @@ export interface PaymentTerm {
|
|
|
9112
9112
|
*/
|
|
9113
9113
|
paymentDiscount2: number;
|
|
9114
9114
|
|
|
9115
|
-
/**
|
|
9116
|
-
* printDescription
|
|
9117
|
-
*/
|
|
9118
|
-
printDescription: string;
|
|
9119
|
-
|
|
9120
9115
|
/**
|
|
9121
9116
|
* Percent for Discount 1
|
|
9122
9117
|
*/
|
|
9123
9118
|
paymentDiscount1: number;
|
|
9124
9119
|
|
|
9125
9120
|
/**
|
|
9126
|
-
*
|
|
9121
|
+
* printDescription
|
|
9127
9122
|
*/
|
|
9128
|
-
|
|
9123
|
+
printDescription: string;
|
|
9129
9124
|
|
|
9130
9125
|
/**
|
|
9131
9126
|
* Days for Discount 1
|
|
9132
9127
|
*/
|
|
9133
9128
|
paymentDays1: number;
|
|
9134
9129
|
|
|
9130
|
+
/**
|
|
9131
|
+
* for deposit: remaining term
|
|
9132
|
+
*/
|
|
9133
|
+
remainingTermRef: ApiObjectReference;
|
|
9134
|
+
|
|
9135
9135
|
/**
|
|
9136
9136
|
* Days for Discount 2
|
|
9137
9137
|
*/
|
|
@@ -9608,14 +9608,14 @@ export interface PicklistLineComponent {
|
|
|
9608
9608
|
quantityCollected: number;
|
|
9609
9609
|
|
|
9610
9610
|
/**
|
|
9611
|
-
*
|
|
9611
|
+
* Menge der Position
|
|
9612
9612
|
*/
|
|
9613
|
-
|
|
9613
|
+
quantity: number;
|
|
9614
9614
|
|
|
9615
9615
|
/**
|
|
9616
|
-
*
|
|
9616
|
+
* Artikelbezeichnung
|
|
9617
9617
|
*/
|
|
9618
|
-
|
|
9618
|
+
articleName: string;
|
|
9619
9619
|
|
|
9620
9620
|
/**
|
|
9621
9621
|
* Artikelbeschreibung
|
|
@@ -9844,14 +9844,14 @@ export interface PicklistTemplate$OrderSelectionOptions {
|
|
|
9844
9844
|
maxOrderValue: number;
|
|
9845
9845
|
|
|
9846
9846
|
/**
|
|
9847
|
-
* Nur
|
|
9847
|
+
* Nur für Einzelkommissionierung und Konsolidierung: maximale Anzahl zu übernehmender Aufträge
|
|
9848
9848
|
*/
|
|
9849
|
-
|
|
9849
|
+
maxOrderCount: number;
|
|
9850
9850
|
|
|
9851
9851
|
/**
|
|
9852
|
-
* Nur
|
|
9852
|
+
* Nur vollständig lieferbare Positionen
|
|
9853
9853
|
*/
|
|
9854
|
-
|
|
9854
|
+
onlyFullDeliverableOrderLines: boolean;
|
|
9855
9855
|
|
|
9856
9856
|
/**
|
|
9857
9857
|
* Selektion über den Bereich vom Lieferdatum
|
|
@@ -9936,11 +9936,6 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9936
9936
|
*/
|
|
9937
9937
|
orderPickingTrolleyGroupRef: ApiObjectReference;
|
|
9938
9938
|
|
|
9939
|
-
/**
|
|
9940
|
-
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9941
|
-
*/
|
|
9942
|
-
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9943
|
-
|
|
9944
9939
|
/**
|
|
9945
9940
|
* Lagerplätze vorgeben
|
|
9946
9941
|
*/
|
|
@@ -9952,15 +9947,20 @@ export interface PicklistTemplate$PicklistCreationOptions {
|
|
|
9952
9947
|
orderPickingTrolleyRef: ApiObjectReference;
|
|
9953
9948
|
|
|
9954
9949
|
/**
|
|
9955
|
-
*
|
|
9950
|
+
* Mit welcher Reportgruppe soll die Pickliste gedruckt werden?
|
|
9956
9951
|
*/
|
|
9957
|
-
|
|
9952
|
+
picklistOutputReportGroupRef: ApiObjectReference;
|
|
9958
9953
|
|
|
9959
9954
|
/**
|
|
9960
9955
|
* Positionen der Pickliste nach Laufwegposition sortieren
|
|
9961
9956
|
*/
|
|
9962
9957
|
sortByRoutePosition: boolean;
|
|
9963
9958
|
|
|
9959
|
+
/**
|
|
9960
|
+
* Sollen alle verfügbaren Pickwagen verwendet werden?
|
|
9961
|
+
*/
|
|
9962
|
+
useAllAvailOrderPickingTrolleys: boolean;
|
|
9963
|
+
|
|
9964
9964
|
/**
|
|
9965
9965
|
* Sollen zuerst noch Picklisten für die Schnellkommissionierung erzeugt werden?
|
|
9966
9966
|
*/
|
|
@@ -10025,14 +10025,14 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10025
10025
|
showShippingFormOnPickingFinish: boolean;
|
|
10026
10026
|
|
|
10027
10027
|
/**
|
|
10028
|
-
* Sollen
|
|
10028
|
+
* Sollen bei der Erfassung automatisch die Etiketten gedruckt werden?
|
|
10029
10029
|
*/
|
|
10030
|
-
|
|
10030
|
+
printLabelOnScan: boolean;
|
|
10031
10031
|
|
|
10032
10032
|
/**
|
|
10033
|
-
* Sollen
|
|
10033
|
+
* Sollen Dienstleistungen kommissioniert werden?
|
|
10034
10034
|
*/
|
|
10035
|
-
|
|
10035
|
+
allowPickingOfServiceArticles: boolean;
|
|
10036
10036
|
|
|
10037
10037
|
/**
|
|
10038
10038
|
* Digitale Pickliste verwenden: dabei werden nur die Positionen im Frontend gezeigt und durch Tippen oder Wischen bestätigt
|
|
@@ -10059,26 +10059,26 @@ export interface PicklistTemplate$PicklistProcessingOptions {
|
|
|
10059
10059
|
*/
|
|
10060
10060
|
printLabelOnCompleteOrder: boolean;
|
|
10061
10061
|
|
|
10062
|
-
/**
|
|
10063
|
-
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
10064
|
-
*/
|
|
10065
|
-
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
10066
|
-
|
|
10067
10062
|
/**
|
|
10068
10063
|
* Sollen bei Abschluss des des Pickens automatisch die Etiketten gedruckt werden?
|
|
10069
10064
|
*/
|
|
10070
10065
|
printLabelAfterPicking: boolean;
|
|
10071
10066
|
|
|
10072
10067
|
/**
|
|
10073
|
-
*
|
|
10068
|
+
* Rollende Kommissionierung/Konsolidierung: beim Sammeln muss die Box nach dem Scan eines Artikels per Scan bestätigt werden
|
|
10074
10069
|
*/
|
|
10075
|
-
|
|
10070
|
+
scanPickTrolleyBoxToConfirmPickedArticle: boolean;
|
|
10076
10071
|
|
|
10077
10072
|
/**
|
|
10078
10073
|
* Chargen automatisch bestätigen, wenn sie vorgegeben oder bereits beim Picken erfasst wurden
|
|
10079
10074
|
*/
|
|
10080
10075
|
autoDeterminationOfLots: boolean;
|
|
10081
10076
|
|
|
10077
|
+
/**
|
|
10078
|
+
* Sollen nicht-bestandsgeführte Artikel kommissioniert werden?
|
|
10079
|
+
*/
|
|
10080
|
+
allowPickingOfNonInventoryManagedArticles: boolean;
|
|
10081
|
+
|
|
10082
10082
|
/**
|
|
10083
10083
|
* Zielmengen in Masken verstecken?
|
|
10084
10084
|
*/
|
|
@@ -10164,14 +10164,14 @@ export interface PriceSelectionCriteria {
|
|
|
10164
10164
|
priceGroupId: number;
|
|
10165
10165
|
|
|
10166
10166
|
/**
|
|
10167
|
-
* Liste von
|
|
10167
|
+
* Liste von Account-IDs
|
|
10168
10168
|
*/
|
|
10169
|
-
|
|
10169
|
+
accountIds: Array<number>;
|
|
10170
10170
|
|
|
10171
10171
|
/**
|
|
10172
|
-
* Liste von
|
|
10172
|
+
* Liste von Artikel-IDs
|
|
10173
10173
|
*/
|
|
10174
|
-
|
|
10174
|
+
articleIds: Array<number>;
|
|
10175
10175
|
|
|
10176
10176
|
/**
|
|
10177
10177
|
* ein qualifier
|
|
@@ -10782,14 +10782,14 @@ export const enum RegulationSet {
|
|
|
10782
10782
|
export interface RequestDocument {
|
|
10783
10783
|
|
|
10784
10784
|
/**
|
|
10785
|
-
*
|
|
10785
|
+
* Belegdatum
|
|
10786
10786
|
*/
|
|
10787
|
-
|
|
10787
|
+
documentDate: ScriptingDate;
|
|
10788
10788
|
|
|
10789
10789
|
/**
|
|
10790
|
-
*
|
|
10790
|
+
* ID vom Lagerplatz für den Wareneingang (wenn incomingGoodsPickTrolleyId = null)
|
|
10791
10791
|
*/
|
|
10792
|
-
|
|
10792
|
+
incomingGoodsStorageBinId: number;
|
|
10793
10793
|
|
|
10794
10794
|
/**
|
|
10795
10795
|
* ID der Kassenschublade (bei POS)
|
|
@@ -10872,14 +10872,14 @@ export interface RequestDocument {
|
|
|
10872
10872
|
assemblyComponentReturnsToAddOnTransfer: Array<AssemblyComponentReturnLine>;
|
|
10873
10873
|
|
|
10874
10874
|
/**
|
|
10875
|
-
*
|
|
10875
|
+
* ID der Kasse (bei POS)
|
|
10876
10876
|
*/
|
|
10877
|
-
|
|
10877
|
+
posRegisterId: number;
|
|
10878
10878
|
|
|
10879
10879
|
/**
|
|
10880
|
-
*
|
|
10880
|
+
* Die Vertragsdetails
|
|
10881
10881
|
*/
|
|
10882
|
-
|
|
10882
|
+
contractDetail: DocumentContractDetail;
|
|
10883
10883
|
|
|
10884
10884
|
/**
|
|
10885
10885
|
* Vorgabelieferant bei Übernahme von Auftrag zu Bestellung(en)
|
|
@@ -10902,14 +10902,14 @@ export interface RequestDocument {
|
|
|
10902
10902
|
dropShipping: boolean;
|
|
10903
10903
|
|
|
10904
10904
|
/**
|
|
10905
|
-
*
|
|
10905
|
+
* reference to the corresponding document in an external system
|
|
10906
10906
|
*/
|
|
10907
|
-
|
|
10907
|
+
externalId: string;
|
|
10908
10908
|
|
|
10909
10909
|
/**
|
|
10910
|
-
*
|
|
10910
|
+
* target document type for document copy
|
|
10911
10911
|
*/
|
|
10912
|
-
|
|
10912
|
+
targetDocumentType: DocumentType;
|
|
10913
10913
|
|
|
10914
10914
|
/**
|
|
10915
10915
|
* ID vom Pickwagen für den Wareneingang (wenn incomingGoodsStorageBinId = null)
|
|
@@ -10937,14 +10937,14 @@ export interface RequestDocument {
|
|
|
10937
10937
|
texts: Array<DocumentText>;
|
|
10938
10938
|
|
|
10939
10939
|
/**
|
|
10940
|
-
*
|
|
10940
|
+
* Nur für interne Zwecke: neue Positionen, die bei Übernahme aus einer Pickliste angelegt werden sollen
|
|
10941
10941
|
*/
|
|
10942
|
-
|
|
10942
|
+
picklistLinesToAddOnTransfer: Array<PicklistLine>;
|
|
10943
10943
|
|
|
10944
10944
|
/**
|
|
10945
|
-
*
|
|
10945
|
+
* Wird dieser Beleg durch die Picklistenverarbeitung verarbeitet?
|
|
10946
10946
|
*/
|
|
10947
|
-
|
|
10947
|
+
processedByPicklistProcessing: boolean;
|
|
10948
10948
|
|
|
10949
10949
|
/**
|
|
10950
10950
|
* Die Rabatte des Beleges
|
|
@@ -10980,14 +10980,14 @@ export interface RequestDocumentLine {
|
|
|
10980
10980
|
description: string;
|
|
10981
10981
|
|
|
10982
10982
|
/**
|
|
10983
|
-
*
|
|
10983
|
+
* Quittungsdetails zur Belegposition
|
|
10984
10984
|
*/
|
|
10985
|
-
|
|
10985
|
+
posDetail: DocumentLinePosDetail;
|
|
10986
10986
|
|
|
10987
10987
|
/**
|
|
10988
|
-
*
|
|
10988
|
+
* Herkunft des Preises
|
|
10989
10989
|
*/
|
|
10990
|
-
|
|
10990
|
+
priceOrigin: ProductPriceOrigin;
|
|
10991
10991
|
|
|
10992
10992
|
/**
|
|
10993
10993
|
* (optional) Gesamtpreis dieser Position
|
|
@@ -11005,14 +11005,14 @@ export interface RequestDocumentLine {
|
|
|
11005
11005
|
commissions: Array<RequestDocumentLineCommission>;
|
|
11006
11006
|
|
|
11007
11007
|
/**
|
|
11008
|
-
*
|
|
11008
|
+
* Typ dieser Position
|
|
11009
11009
|
*/
|
|
11010
|
-
|
|
11010
|
+
lineType: DocumentLineType;
|
|
11011
11011
|
|
|
11012
11012
|
/**
|
|
11013
|
-
*
|
|
11013
|
+
* FiBu-Angaben
|
|
11014
11014
|
*/
|
|
11015
|
-
|
|
11015
|
+
financeBooking: DocumentFinanceBooking;
|
|
11016
11016
|
|
|
11017
11017
|
/**
|
|
11018
11018
|
* Für interne Zwecke: Steuersatz in Prozent
|
|
@@ -11080,14 +11080,14 @@ export interface RequestDocumentLine {
|
|
|
11080
11080
|
settledOpenItemComment: string;
|
|
11081
11081
|
|
|
11082
11082
|
/**
|
|
11083
|
-
*
|
|
11083
|
+
* Referenz auf die zugehörige Position in einem externen System
|
|
11084
11084
|
*/
|
|
11085
|
-
|
|
11085
|
+
externalId: string;
|
|
11086
11086
|
|
|
11087
11087
|
/**
|
|
11088
|
-
*
|
|
11088
|
+
* ID der Belegposition im aktuellen Beleg
|
|
11089
11089
|
*/
|
|
11090
|
-
|
|
11090
|
+
lineId: number;
|
|
11091
11091
|
|
|
11092
11092
|
/**
|
|
11093
11093
|
* ID des Pickwagens für den Wareneingang (wenn `incomingGoodsStorageBinId` = null)
|
|
@@ -11119,11 +11119,6 @@ export interface RequestDocumentLine {
|
|
|
11119
11119
|
*/
|
|
11120
11120
|
priceModifiers: Array<RequestDocumentPriceModifier>;
|
|
11121
11121
|
|
|
11122
|
-
/**
|
|
11123
|
-
* Buchungen zu dieser Belegposition
|
|
11124
|
-
*/
|
|
11125
|
-
bookings: Array<RequestDocumentLineBooking>;
|
|
11126
|
-
|
|
11127
11122
|
/**
|
|
11128
11123
|
* Für interne Zwecke: Externe Artikelnummer
|
|
11129
11124
|
*/
|
|
@@ -11134,6 +11129,11 @@ export interface RequestDocumentLine {
|
|
|
11134
11129
|
*/
|
|
11135
11130
|
sourceLineId: number;
|
|
11136
11131
|
|
|
11132
|
+
/**
|
|
11133
|
+
* Buchungen zu dieser Belegposition
|
|
11134
|
+
*/
|
|
11135
|
+
bookings: Array<RequestDocumentLineBooking>;
|
|
11136
|
+
|
|
11137
11137
|
/**
|
|
11138
11138
|
* Zu der Zeile Etikettendruck anstoßen
|
|
11139
11139
|
*/
|
|
@@ -11357,14 +11357,14 @@ export interface SalesAgent {
|
|
|
11357
11357
|
taxRateRef: ApiObjectReference;
|
|
11358
11358
|
|
|
11359
11359
|
/**
|
|
11360
|
-
*
|
|
11360
|
+
* country code performance country IsoAlpha3
|
|
11361
11361
|
*/
|
|
11362
|
-
|
|
11362
|
+
performanceCountryCode: string;
|
|
11363
11363
|
|
|
11364
11364
|
/**
|
|
11365
|
-
*
|
|
11365
|
+
* reference to the assigned user
|
|
11366
11366
|
*/
|
|
11367
|
-
|
|
11367
|
+
userRef: ApiObjectReference;
|
|
11368
11368
|
|
|
11369
11369
|
/**
|
|
11370
11370
|
* billing type
|
|
@@ -11874,14 +11874,14 @@ export interface ShelfDocumentAttribution {
|
|
|
11874
11874
|
shelfResourceId: number;
|
|
11875
11875
|
|
|
11876
11876
|
/**
|
|
11877
|
-
*
|
|
11877
|
+
* Verfügbare Transformationen zum Bild
|
|
11878
11878
|
*/
|
|
11879
|
-
|
|
11879
|
+
transformationKeys: Array<string>;
|
|
11880
11880
|
|
|
11881
11881
|
/**
|
|
11882
|
-
*
|
|
11882
|
+
* id of the referenced object
|
|
11883
11883
|
*/
|
|
11884
|
-
|
|
11884
|
+
refId: number;
|
|
11885
11885
|
|
|
11886
11886
|
/**
|
|
11887
11887
|
* Unique identifier of the Object
|
|
@@ -11983,14 +11983,14 @@ export interface ShelfFile {
|
|
|
11983
11983
|
subFiles: Array<SubFileInfo>;
|
|
11984
11984
|
|
|
11985
11985
|
/**
|
|
11986
|
-
*
|
|
11986
|
+
* fileSize
|
|
11987
11987
|
*/
|
|
11988
|
-
|
|
11988
|
+
fileSize: number;
|
|
11989
11989
|
|
|
11990
11990
|
/**
|
|
11991
|
-
*
|
|
11991
|
+
* revision number of this file
|
|
11992
11992
|
*/
|
|
11993
|
-
|
|
11993
|
+
revisionNumber: number;
|
|
11994
11994
|
|
|
11995
11995
|
/**
|
|
11996
11996
|
* file-extension of this entry
|
|
@@ -12018,14 +12018,14 @@ export interface ShelfFile {
|
|
|
12018
12018
|
version: number;
|
|
12019
12019
|
|
|
12020
12020
|
/**
|
|
12021
|
-
*
|
|
12021
|
+
* meta data
|
|
12022
12022
|
*/
|
|
12023
|
-
|
|
12023
|
+
metaDataEntries: Array<ShelfFileMetaData>;
|
|
12024
12024
|
|
|
12025
12025
|
/**
|
|
12026
|
-
*
|
|
12026
|
+
* current reference of this file in our storage
|
|
12027
12027
|
*/
|
|
12028
|
-
|
|
12028
|
+
storageHandle: string;
|
|
12029
12029
|
|
|
12030
12030
|
/**
|
|
12031
12031
|
* MetaInformations for this Object
|
|
@@ -12072,14 +12072,14 @@ export interface ShelfShare {
|
|
|
12072
12072
|
publishState: ShelfSharePublishState;
|
|
12073
12073
|
|
|
12074
12074
|
/**
|
|
12075
|
-
*
|
|
12075
|
+
* wie viele Minuten bleibt dieser resource-pfad zugreifbar (null = unlimited)
|
|
12076
12076
|
*/
|
|
12077
|
-
|
|
12077
|
+
publicUrlDurationInMinutes: number;
|
|
12078
12078
|
|
|
12079
12079
|
/**
|
|
12080
|
-
*
|
|
12080
|
+
* Freifelder
|
|
12081
12081
|
*/
|
|
12082
|
-
|
|
12082
|
+
custom: EavShelfshare;
|
|
12083
12083
|
|
|
12084
12084
|
/**
|
|
12085
12085
|
* der url-pfadanteil, der öffentlichen zugriff auf diese resource gibt
|
|
@@ -12223,14 +12223,14 @@ export const enum StockJournalFactor {
|
|
|
12223
12223
|
export interface StockMovementManualApi {
|
|
12224
12224
|
|
|
12225
12225
|
/**
|
|
12226
|
-
*
|
|
12226
|
+
* Bemerkung
|
|
12227
12227
|
*/
|
|
12228
|
-
|
|
12228
|
+
note: string;
|
|
12229
12229
|
|
|
12230
12230
|
/**
|
|
12231
|
-
*
|
|
12231
|
+
* Preiseinheit, auf die sich der EK bezieht (i.d.R. basePriceUnit des Artikels)
|
|
12232
12232
|
*/
|
|
12233
|
-
|
|
12233
|
+
priceUnit: number;
|
|
12234
12234
|
|
|
12235
12235
|
/**
|
|
12236
12236
|
* Menge
|
|
@@ -12518,11 +12518,6 @@ export interface Supplier {
|
|
|
12518
12518
|
*/
|
|
12519
12519
|
info: MetaInfo;
|
|
12520
12520
|
|
|
12521
|
-
/**
|
|
12522
|
-
* tax able or tax free
|
|
12523
|
-
*/
|
|
12524
|
-
taxable: boolean;
|
|
12525
|
-
|
|
12526
12521
|
/**
|
|
12527
12522
|
* reference to the delivery method
|
|
12528
12523
|
*/
|
|
@@ -12533,6 +12528,11 @@ export interface Supplier {
|
|
|
12533
12528
|
*/
|
|
12534
12529
|
supplierGroupRef: ApiObjectReference;
|
|
12535
12530
|
|
|
12531
|
+
/**
|
|
12532
|
+
* tax able or tax free
|
|
12533
|
+
*/
|
|
12534
|
+
taxable: boolean;
|
|
12535
|
+
|
|
12536
12536
|
/**
|
|
12537
12537
|
* Mahnen?
|
|
12538
12538
|
*/
|
|
@@ -13060,14 +13060,14 @@ export interface User {
|
|
|
13060
13060
|
version: number;
|
|
13061
13061
|
|
|
13062
13062
|
/**
|
|
13063
|
-
*
|
|
13063
|
+
* is the email verified
|
|
13064
13064
|
*/
|
|
13065
|
-
|
|
13065
|
+
emailVerified: boolean;
|
|
13066
13066
|
|
|
13067
13067
|
/**
|
|
13068
|
-
*
|
|
13068
|
+
* first-name
|
|
13069
13069
|
*/
|
|
13070
|
-
|
|
13070
|
+
firstName: string;
|
|
13071
13071
|
|
|
13072
13072
|
/**
|
|
13073
13073
|
* email-address
|
|
@@ -13080,14 +13080,14 @@ export interface User {
|
|
|
13080
13080
|
id: number;
|
|
13081
13081
|
|
|
13082
13082
|
/**
|
|
13083
|
-
*
|
|
13083
|
+
* Valid to
|
|
13084
13084
|
*/
|
|
13085
|
-
|
|
13085
|
+
validTo: ScriptingDateTime;
|
|
13086
13086
|
|
|
13087
13087
|
/**
|
|
13088
|
-
*
|
|
13088
|
+
* username
|
|
13089
13089
|
*/
|
|
13090
|
-
|
|
13090
|
+
username: string;
|
|
13091
13091
|
|
|
13092
13092
|
/**
|
|
13093
13093
|
* MetaInformations for this Object
|
|
@@ -13275,14 +13275,14 @@ export interface VariantValue {
|
|
|
13275
13275
|
version: number;
|
|
13276
13276
|
|
|
13277
13277
|
/**
|
|
13278
|
-
*
|
|
13278
|
+
* Variantenattribut
|
|
13279
13279
|
*/
|
|
13280
|
-
|
|
13280
|
+
attributeRef: ApiObjectReference;
|
|
13281
13281
|
|
|
13282
13282
|
/**
|
|
13283
|
-
*
|
|
13283
|
+
* Mehrsprachige Bezeichnungen
|
|
13284
13284
|
*/
|
|
13285
|
-
|
|
13285
|
+
labels: Array<VariantDescription>;
|
|
13286
13286
|
|
|
13287
13287
|
/**
|
|
13288
13288
|
* MetaInformations for this Object
|