@@ -15,13 +15,13 @@ public class Item
15
15
16
16
public string SKU { get ; set ; }
17
17
18
- public int InventoryID { get ; set ; }
18
+ public int ? InventoryID { get ; set ; }
19
19
20
20
public string ParentSKU { get ; set ; }
21
21
22
22
public string AccountingCode { get ; set ; }
23
23
24
- public bool Virtual { get ; set ; }
24
+ public bool ? Virtual { get ; set ; }
25
25
26
26
public string Brand { get ; set ; }
27
27
@@ -33,11 +33,11 @@ public class Item
33
33
34
34
public string SortOrder2 { get ; set ; }
35
35
36
- public decimal RRP { get ; set ; }
36
+ public decimal ? RRP { get ; set ; }
37
37
38
- public decimal DefaultPrice { get ; set ; }
38
+ public decimal ? DefaultPrice { get ; set ; }
39
39
40
- public decimal PromotionPrice { get ; set ; }
40
+ public decimal ? PromotionPrice { get ; set ; }
41
41
42
42
[ JsonConverter ( typeof ( NetoDateNullConverter < DateTime > ) ) ]
43
43
public DateTime ? PromotionStartDate { get ; set ; }
@@ -63,13 +63,13 @@ public class Item
63
63
[ JsonConverter ( typeof ( NetoDateNullConverter < DateTime > ) ) ]
64
64
public DateTime ? DateArrivalUTC { get ; set ; }
65
65
66
- public decimal CostPrice { get ; set ; }
66
+ public decimal ? CostPrice { get ; set ; }
67
67
68
68
public string UnitOfMeasure { get ; set ; }
69
69
70
70
public string BaseUnitOfMeasure { get ; set ; }
71
71
72
- public decimal BaseUnitPerQuantity { get ; set ; }
72
+ public decimal ? BaseUnitPerQuantity { get ; set ; }
73
73
74
74
public string BuyUnitQuantity { get ; set ; }
75
75
@@ -83,19 +83,19 @@ public class Item
83
83
84
84
public string PickZone { get ; set ; }
85
85
86
- public bool Approved { get ; set ; }
86
+ public bool ? Approved { get ; set ; }
87
87
88
- public bool IsActive { get ; set ; }
88
+ public bool ? IsActive { get ; set ; }
89
89
90
- public bool Visible { get ; set ; }
90
+ public bool ? Visible { get ; set ; }
91
91
92
- public bool TaxFreeItem { get ; set ; }
92
+ public bool ? TaxFreeItem { get ; set ; }
93
93
94
- public bool TaxInclusive { get ; set ; }
94
+ public bool ? TaxInclusive { get ; set ; }
95
95
96
- public bool ApprovedForPOS { get ; set ; }
96
+ public bool ? ApprovedForPOS { get ; set ; }
97
97
98
- public bool ApprovedForMobileStore { get ; set ; }
98
+ public bool ? ApprovedForMobileStore { get ; set ; }
99
99
100
100
public string SearchKeywords { get ; set ; }
101
101
@@ -190,20 +190,20 @@ public class Item
190
190
191
191
public string AssetAccount { get ; set ; }
192
192
193
- public decimal ItemHeight { get ; set ; }
193
+ public decimal ? ItemHeight { get ; set ; }
194
194
195
- public decimal ItemLength { get ; set ; }
195
+ public decimal ? ItemLength { get ; set ; }
196
196
197
- public decimal ItemWidth { get ; set ; }
197
+ public decimal ? ItemWidth { get ; set ; }
198
198
199
- public decimal ShippingHeight { get ; set ; }
200
- public decimal ShippingLength { get ; set ; }
199
+ public decimal ? ShippingHeight { get ; set ; }
200
+ public decimal ? ShippingLength { get ; set ; }
201
201
202
- public decimal ShippingWidth { get ; set ; }
202
+ public decimal ? ShippingWidth { get ; set ; }
203
203
204
- public decimal ShippingWeight { get ; set ; }
204
+ public decimal ? ShippingWeight { get ; set ; }
205
205
206
- public decimal CubicWeight { get ; set ; }
206
+ public decimal ? CubicWeight { get ; set ; }
207
207
208
208
public string SupplierItemCode { get ; set ; }
209
209
@@ -215,9 +215,9 @@ public class Item
215
215
216
216
public string DisplayTemplate { get ; set ; }
217
217
218
- public bool EditableKitBundle { get ; set ; }
218
+ public bool ? EditableKitBundle { get ; set ; }
219
219
220
- public bool RequiresPackaging { get ; set ; }
220
+ public bool ? RequiresPackaging { get ; set ; }
221
221
222
222
public string SEOPageTitle { get ; set ; }
223
223
@@ -229,25 +229,25 @@ public class Item
229
229
230
230
public string SEOCanonicalURL { get ; set ; }
231
231
232
- public bool IsAsset { get ; set ; }
232
+ public bool ? IsAsset { get ; set ; }
233
233
234
234
public string WhenToRepeatOnStandingOrders { get ; set ; }
235
235
236
- public bool SerialTracking { get ; set ; }
236
+ public bool ? SerialTracking { get ; set ; }
237
237
238
238
public string Group { get ; set ; }
239
239
240
240
public string ShippingCategory { get ; set ; }
241
241
242
242
public string Job { get ; set ; }
243
243
244
- public decimal MonthlySpendRequirement { get ; set ; }
244
+ public decimal ? MonthlySpendRequirement { get ; set ; }
245
245
246
246
public string RestrictedToUserGroup { get ; set ; }
247
247
248
248
public string ItemURL { get ; set ; }
249
249
250
- public bool AutomaticURL { get ; set ; }
250
+ public bool ? AutomaticURL { get ; set ; }
251
251
252
252
public string CommittedQuantity { get ; set ; }
253
253
@@ -423,12 +423,12 @@ public class PriceGroup
423
423
{
424
424
public string GroupID { get ; set ; }
425
425
public string Group { get ; set ; }
426
- public decimal Price { get ; set ; }
427
- public decimal PromotionPrice { get ; set ; }
428
- public int MinimumQuantity { get ; set ; }
429
- public int MaximumQuantity { get ; set ; }
430
- public int Multiple { get ; set ; }
431
- public int MultipleStartQuantity { get ; set ; }
426
+ public decimal ? Price { get ; set ; }
427
+ public decimal ? PromotionPrice { get ; set ; }
428
+ public int ? MinimumQuantity { get ; set ; }
429
+ public int ? MaximumQuantity { get ; set ; }
430
+ public int ? Multiple { get ; set ; }
431
+ public int ? MultipleStartQuantity { get ; set ; }
432
432
}
433
433
434
434
public class ItemSpecifics
@@ -476,7 +476,7 @@ public class WarehouseLocation
476
476
public string LocationID { get ; set ; }
477
477
public string WarehouseID { get ; set ; }
478
478
public string Type { get ; set ; }
479
- public int Priority { get ; set ; }
479
+ public int ? Priority { get ; set ; }
480
480
}
481
481
482
482
public class KitComponents
@@ -487,10 +487,10 @@ public class KitComponent
487
487
{
488
488
public string ComponentSKU { get ; set ; }
489
489
public string ComponentValue { get ; set ; }
490
- public int AssembleQuantity { get ; set ; }
491
- public int MinimumQuantity { get ; set ; }
492
- public int MaximumQuantity { get ; set ; }
493
- public int SortOrder { get ; set ; }
490
+ public int ? AssembleQuantity { get ; set ; }
491
+ public int ? MinimumQuantity { get ; set ; }
492
+ public int ? MaximumQuantity { get ; set ; }
493
+ public int ? SortOrder { get ; set ; }
494
494
}
495
495
496
496
public class FreeGift
@@ -509,7 +509,7 @@ public class UpsellProduct
509
509
510
510
public class RelatedContents
511
511
{
512
- public int ContentID { get ; set ; }
512
+ public int ? ContentID { get ; set ; }
513
513
public string ContentName { get ; set ; }
514
514
public string ContentTypeName { get ; set ; }
515
515
}
0 commit comments