ignos-api-client 2024.3.12.8830__py3-none-any.whl → 20260205.5.1__py3-none-any.whl

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.
@@ -18,6 +18,110 @@ class AlertNotificationAccessStatusDto(str, Enum, metaclass=CaseInsensitiveEnumM
18
18
  USER_NO_ACCESS = "UserNoAccess"
19
19
 
20
20
 
21
+ class AmcCheckListOrderColumnRequestDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
22
+ """AmcCheckListOrderColumnRequestDto."""
23
+
24
+ ORIGINAL_REPORT = "OriginalReport"
25
+ GENERATED_REPORT = "GeneratedReport"
26
+ CUSTOMER = "Customer"
27
+ PROJECT = "Project"
28
+ PURCHASE_ORDER = "PurchaseOrder"
29
+ WORK_ORDER = "WorkOrder"
30
+ CERTIFICATE_TYPE = "CertificateType"
31
+ LINE = "Line"
32
+ ITEM = "Item"
33
+ HEAT = "Heat"
34
+ LOT = "Lot"
35
+ DATE = "Date"
36
+ STATUS = "Status"
37
+
38
+
39
+ class AmcCheckStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
40
+ """AmcCheckStatusDto."""
41
+
42
+ WAITING_FOR_PROCESSING = "WaitingForProcessing"
43
+ PROCESSING = "Processing"
44
+ DRAFT = "Draft"
45
+ APPROVED = "Approved"
46
+ REJECTED = "Rejected"
47
+
48
+
49
+ class AmcCoolingTreatmentMethodDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
50
+ """AmcCoolingTreatmentMethodDto."""
51
+
52
+ AIR_COOLING = "AirCooling"
53
+ OIL_QUENCHING = "OilQuenching"
54
+ WATER_QUENCHING = "WaterQuenching"
55
+ FURNACE_COOLING = "FurnaceCooling"
56
+ AIR_BLAST_COOLING = "AirBlastCooling"
57
+ POLYMER_QUENCHING = "PolymerQuenching"
58
+
59
+
60
+ class AmcHeatingTreatmentMethodDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
61
+ """AmcHeatingTreatmentMethodDto."""
62
+
63
+ ANNEALING = "Annealing"
64
+ NORMALIZING = "Normalizing"
65
+ QUENCHING = "Quenching"
66
+ TEMPERING = "Tempering"
67
+ STRESS_RELIEVING = "StressRelieving"
68
+ SOLUTION_TREATING = "SolutionTreating"
69
+ AGING = "Aging"
70
+ AUSTEMPERING = "Austempering"
71
+ MARTEMPERING = "Martempering"
72
+
73
+
74
+ class AmcSpecificationOperatorDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
75
+ """AmcSpecificationOperatorDto."""
76
+
77
+ EQUAL = "Equal"
78
+ GREATER_THAN = "GreaterThan"
79
+ LESS_THAN = "LessThan"
80
+ GREATER_THAN_OR_EQUAL = "GreaterThanOrEqual"
81
+ LESS_THAN_OR_EQUAL = "LessThanOrEqual"
82
+ MIN = "Min"
83
+ MAX = "Max"
84
+ BETWEEN = "Between"
85
+
86
+
87
+ class AmcSpecificationResultLineStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
88
+ """AmcSpecificationResultLineStatusDto."""
89
+
90
+ NOT_FOUND = "NotFound"
91
+ NOT_OK = "NotOk"
92
+ OK = "Ok"
93
+
94
+
95
+ class AmcSpecificationStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
96
+ """AmcSpecificationStatusDto."""
97
+
98
+ DRAFT = "Draft"
99
+ RELEASED = "Released"
100
+ EXPIRED = "Expired"
101
+ REJECTED = "Rejected"
102
+
103
+
104
+ class AmcSpecificationSymbolDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
105
+ """AmcSpecificationSymbolDto."""
106
+
107
+ NONE = "None"
108
+ PERCENTAGE = "Percentage"
109
+ JOULE = "Joule"
110
+ CELSIUS = "Celsius"
111
+ FARENHEIT = "Farenheit"
112
+ MPA = "Mpa"
113
+ HBW = "Hbw"
114
+
115
+
116
+ class AmcTypeStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
117
+ """AmcTypeStatusDto."""
118
+
119
+ DRAFT = "Draft"
120
+ RELEASED = "Released"
121
+ EXPIRED = "Expired"
122
+ REJECTED = "Rejected"
123
+
124
+
21
125
  class BonusType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
22
126
  """BonusType."""
23
127
 
@@ -26,6 +130,44 @@ class BonusType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
26
130
  POSITIVE_AND_NEGATIVE = "PositiveAndNegative"
27
131
 
28
132
 
133
+ class BookingCreatedByDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
134
+ """BookingCreatedByDto."""
135
+
136
+ MY_BOOKINGS = "MyBookings"
137
+ OTHERS_BOOKINGS = "OthersBookings"
138
+
139
+
140
+ class BookingOrderDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
141
+ """BookingOrderDto."""
142
+
143
+ ASCENDING = "Ascending"
144
+ DESCENDING = "Descending"
145
+
146
+
147
+ class BookingStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
148
+ """BookingStatusDto."""
149
+
150
+ PENDING = "Pending"
151
+ CANCELLED = "Cancelled"
152
+ IN_PROGRESS = "InProgress"
153
+ COMPLETED = "Completed"
154
+
155
+
156
+ class BookingTaskDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
157
+ """BookingTaskDto."""
158
+
159
+ MY_TASKS = "MyTasks"
160
+ OTHERS_TASKS = "OthersTasks"
161
+
162
+
163
+ class CalendarDayCapacityDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
164
+ """CalendarDayCapacityDto."""
165
+
166
+ WORKING_DAY = "WorkingDay"
167
+ HALF_DAY = "HalfDay"
168
+ HOLIDAY = "Holiday"
169
+
170
+
29
171
  class CalibrationListStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
30
172
  """CalibrationListStatus."""
31
173
 
@@ -60,6 +202,26 @@ class CncOperationStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
60
202
  ARCHIVED = "Archived"
61
203
 
62
204
 
205
+ class ContentType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
206
+ """Content type for upload."""
207
+
208
+ APPLICATION_JSON = "application/*+json"
209
+ """Content Type 'application/*+json'"""
210
+ APPLICATION_JSON = "application/json"
211
+ """Content Type 'application/json'"""
212
+ TEXT_JSON = "text/json"
213
+ """Content Type 'text/json'"""
214
+
215
+
216
+ class CredentialTypeDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
217
+ """CredentialTypeDto."""
218
+
219
+ CLIENT_ID_CLIENT_SECRET = "ClientIdClientSecret"
220
+ CLIENT_SECRET = "ClientSecret"
221
+ O_AUTH = "OAuth"
222
+ CONNECTION_STRING = "ConnectionString"
223
+
224
+
63
225
  class CustomerOrderLineStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
64
226
  """CustomerOrderLineStatus."""
65
227
 
@@ -80,6 +242,22 @@ class CustomerOrderStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
80
242
  DELETED = "Deleted"
81
243
 
82
244
 
245
+ class DimensionReportType(int, Enum, metaclass=CaseInsensitiveEnumMeta):
246
+ """DimensionReportType."""
247
+
248
+ ZERO = 0
249
+ ONE = 1
250
+ TWO = 2
251
+ THREE = 3
252
+
253
+
254
+ class DimensionSettingDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
255
+ """DimensionSettingDto."""
256
+
257
+ TOLERANCE = "Tolerance"
258
+ MIN_MAX_DIMENSION = "MinMaxDimension"
259
+
260
+
83
261
  class DocumentMetadataRequirement(str, Enum, metaclass=CaseInsensitiveEnumMeta):
84
262
  """DocumentMetadataRequirement."""
85
263
 
@@ -109,7 +287,6 @@ class DocumentRuleType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
109
287
  """DocumentRuleType."""
110
288
 
111
289
  TAG = "Tag"
112
- TITLE = "Title"
113
290
  SEQUENCES = "Sequences"
114
291
  ORDER_LINES = "OrderLines"
115
292
  LOT_NUMBERS = "LotNumbers"
@@ -162,6 +339,13 @@ class DocumentWorkflowType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
162
339
  INTERNAL_WITH_FIX = "InternalWithFix"
163
340
 
164
341
 
342
+ class DowntimeReasonTypeDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
343
+ """DowntimeReasonTypeDto."""
344
+
345
+ UNPLANNED = "Unplanned"
346
+ PLANNED = "Planned"
347
+
348
+
165
349
  class EmptyChapterStrategy(int, Enum, metaclass=CaseInsensitiveEnumMeta):
166
350
  """EmptyChapterStrategy."""
167
351
 
@@ -202,6 +386,124 @@ class FileTransferStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
202
386
  FAILED = "Failed"
203
387
 
204
388
 
389
+ class FixtureApprovedDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
390
+ """FixtureApprovedDto."""
391
+
392
+ NOT_APPROVED = "NotApproved"
393
+ APPROVED = "Approved"
394
+
395
+
396
+ class FixtureDecimalFilterCriteriaDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
397
+ """FixtureDecimalFilterCriteriaDto."""
398
+
399
+ EQUALS = "Equals"
400
+ NOT_EQUALS = "NotEquals"
401
+ GREATER_THAN = "GreaterThan"
402
+ GREATER_THAN_EQUALS = "GreaterThanEquals"
403
+ LESS_THAN = "LessThan"
404
+ LESS_THAN_EQUALS = "LessThanEquals"
405
+ EMPTY = "Empty"
406
+ BETWEEN = "Between"
407
+
408
+
409
+ class FixtureDeletedDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
410
+ """FixtureDeletedDto."""
411
+
412
+ NOT_DELETED = "NotDeleted"
413
+ DELETED = "Deleted"
414
+
415
+
416
+ class FixtureSortColumn(str, Enum, metaclass=CaseInsensitiveEnumMeta):
417
+ """FixtureSortColumn."""
418
+
419
+ NAME = "Name"
420
+ DIAMETER = "Diameter"
421
+ OUTER_DIAMETER = "OuterDiameter"
422
+ INNER_DIAMETER = "InnerDiameter"
423
+ DEPTH = "Depth"
424
+ GRIP_SIDE = "GripSide"
425
+ LOCATION = "Location"
426
+ INTERFACE = "Interface"
427
+ TOTAL_LENGTH = "TotalLength"
428
+ SOURCE_MACHINE = "SourceMachine"
429
+ LAST_USED = "LastUsed"
430
+ CREATED = "Created"
431
+
432
+
433
+ class FixtureSortOrder(str, Enum, metaclass=CaseInsensitiveEnumMeta):
434
+ """FixtureSortOrder."""
435
+
436
+ ASCENDING = "Ascending"
437
+ DESCENDING = "Descending"
438
+
439
+
440
+ class FixtureStringFilterCriteriaDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
441
+ """FixtureStringFilterCriteriaDto."""
442
+
443
+ EQUALS = "Equals"
444
+ NOT_EQUALS = "NotEquals"
445
+ CONTAINS = "Contains"
446
+ NOT_CONTAINS = "NotContains"
447
+ EMPTY = "Empty"
448
+
449
+
450
+ class FixtureTypeDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
451
+ """FixtureTypeDto."""
452
+
453
+ BUNGS = "Bungs"
454
+ JAWS = "Jaws"
455
+ JIGS = "Jigs"
456
+ CENTERS = "Centers"
457
+
458
+
459
+ class GeneralToleranceDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
460
+ """GeneralToleranceDto."""
461
+
462
+ NOT_SET = "NotSet"
463
+ FINE = "Fine"
464
+ MEDIUM = "Medium"
465
+ COARSE = "Coarse"
466
+ VERY_COARSE = "VeryCoarse"
467
+
468
+
469
+ class GripSideDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
470
+ """GripSideDto."""
471
+
472
+ NOT_APPLICABLE = "NotApplicable"
473
+ INTERNAL = "Internal"
474
+ EXTERNAL = "External"
475
+
476
+
477
+ class LocationKindDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
478
+ """LocationKindDto."""
479
+
480
+ WAREHOUSE = "Warehouse"
481
+ ZONE = "Zone"
482
+ LOCATION = "Location"
483
+
484
+
485
+ class LocationProfileDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
486
+ """LocationProfileDto."""
487
+
488
+ CAGE = "Cage"
489
+ CANTILEVER_RACK = "CantileverRack"
490
+ DEVIATION = "Deviation"
491
+ ENVIRONMENTAL = "Environmental"
492
+ GATE = "Gate"
493
+ GROUND = "Ground"
494
+ INBOUND = "Inbound"
495
+ LOGIA = "Logia"
496
+ LOGIA_TRANSIT = "LogiaTransit"
497
+ OUTBOUND = "Outbound"
498
+ PACK = "Pack"
499
+ PALLET_RACK = "PalletRack"
500
+ PICK = "Pick"
501
+ QUALITY = "Quality"
502
+ QUARANTINE = "Quarantine"
503
+ RESOURCE = "Resource"
504
+ SHELVING_RACK = "ShelvingRack"
505
+
506
+
205
507
  class MachineAlarmType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
206
508
  """MachineAlarmType."""
207
509
 
@@ -229,6 +531,14 @@ class MachineState(str, Enum, metaclass=CaseInsensitiveEnumMeta):
229
531
  POWER_OFF = "PowerOff"
230
532
 
231
533
 
534
+ class MaterialCoveredDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
535
+ """MaterialCoveredDto."""
536
+
537
+ NOT_DEFINED = "NotDefined"
538
+ NOT_COVERED = "NotCovered"
539
+ COVERED = "Covered"
540
+
541
+
232
542
  class MaterialPickStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
233
543
  """MaterialPickStatus."""
234
544
 
@@ -266,6 +576,7 @@ class MeasurementFormInstanceStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta
266
576
  CANCELLED = "Cancelled"
267
577
  COMPLETED = "Completed"
268
578
  APPROVED = "Approved"
579
+ MISSING_COMPLETION = "MissingCompletion"
269
580
 
270
581
 
271
582
  class MeasurementFormSource(str, Enum, metaclass=CaseInsensitiveEnumMeta):
@@ -303,6 +614,7 @@ class MeasurementFrequency(str, Enum, metaclass=CaseInsensitiveEnumMeta):
303
614
  N_PERCENT = "NPercent"
304
615
  ISO2859 = "ISO2859"
305
616
  NTH = "Nth"
617
+ FIRST_AND_LAST = "FirstAndLast"
306
618
  NONE = "None"
307
619
 
308
620
 
@@ -360,6 +672,7 @@ class NonConformanceType(int, Enum, metaclass=CaseInsensitiveEnumMeta):
360
672
  """NonConformanceType."""
361
673
 
362
674
  ONE = 1
675
+ TWO = 2
363
676
 
364
677
 
365
678
  class NotificationChannelDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
@@ -386,6 +699,48 @@ class OrderReferenceTypeDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
386
699
  SALES_ORDER = "SalesOrder"
387
700
 
388
701
 
702
+ class ParcelKindDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
703
+ """ParcelKindDto."""
704
+
705
+ STANDARD = "Standard"
706
+ OTHER = "Other"
707
+ CHIP = "Chip"
708
+ GARBAGE = "Garbage"
709
+ MATERIAL = "Material"
710
+
711
+
712
+ class PurchaseOrderApprovalStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
713
+ """PurchaseOrderApprovalStatusDto."""
714
+
715
+ DRAFT = "Draft"
716
+ IN_REVIEW = "InReview"
717
+ REJECTED = "Rejected"
718
+ APPROVED = "Approved"
719
+ IN_EXTERNAL_REVIEW = "InExternalReview"
720
+ CONFIRMED = "Confirmed"
721
+ FINALIZED = "Finalized"
722
+
723
+
724
+ class PurchaseOrderStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
725
+ """PurchaseOrderStatusDto."""
726
+
727
+ NONE = "None"
728
+ BACKORDER = "Backorder"
729
+ RECEIVED = "Received"
730
+ INVOICED = "Invoiced"
731
+ CANCELED = "Canceled"
732
+
733
+
734
+ class ResourceUtilizationTypeDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
735
+ """ResourceUtilizationTypeDto."""
736
+
737
+ POWER_ON = "PowerOn"
738
+ TWENTY_FOUR_SEVEN = "TwentyFourSeven"
739
+ ACTIVE_ORDER = "ActiveOrder"
740
+ RESOURCE_CALENDAR = "ResourceCalendar"
741
+ FACTORY_CALENDAR = "FactoryCalendar"
742
+
743
+
389
744
  class SchemaFeedbackStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
390
745
  """SchemaFeedbackStatus."""
391
746
 
@@ -393,6 +748,14 @@ class SchemaFeedbackStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
393
748
  IN_PROGRESS = "InProgress"
394
749
 
395
750
 
751
+ class SearchMatchCriteriaDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
752
+ """SearchMatchCriteriaDto."""
753
+
754
+ TRACKING = "Tracking"
755
+ WORK_ORDER = "WorkOrder"
756
+ PARCEL = "Parcel"
757
+
758
+
396
759
  class SearchTypeDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
397
760
  """SearchTypeDto."""
398
761
 
@@ -402,6 +765,21 @@ class SearchTypeDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
402
765
  EQUALS = "Equals"
403
766
 
404
767
 
768
+ class SuggestionTypeDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
769
+ """SuggestionTypeDto."""
770
+
771
+ OTHER = "Other"
772
+ CHIP_DISPOSAL = "ChipDisposal"
773
+ GARBAGE = "Garbage"
774
+
775
+
776
+ class ToolOriginType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
777
+ """ToolOriginType."""
778
+
779
+ OPERATION = "Operation"
780
+ MACHINE = "Machine"
781
+
782
+
405
783
  class TraceIncludeStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
406
784
  """TraceIncludeStatus."""
407
785
 
@@ -418,6 +796,16 @@ class TraceItemStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
418
796
  SCRAP = "Scrap"
419
797
 
420
798
 
799
+ class TraceStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
800
+ """TraceStatus."""
801
+
802
+ NONE = "None"
803
+ UNAVAILABLE = "Unavailable"
804
+ NOT_NEEDED = "NotNeeded"
805
+ PARTIAL = "Partial"
806
+ COMPLETED = "Completed"
807
+
808
+
421
809
  class TraceType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
422
810
  """TraceType."""
423
811
 
@@ -427,6 +815,56 @@ class TraceType(str, Enum, metaclass=CaseInsensitiveEnumMeta):
427
815
  SERIAL_NUMBER = "SerialNumber"
428
816
 
429
817
 
818
+ class TrackingStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
819
+ """TrackingStatusDto."""
820
+
821
+ MANUAL = "Manual"
822
+ PENDING = "Pending"
823
+ CANCELLED = "Cancelled"
824
+ IN_PROGRESS = "InProgress"
825
+ COMPLETED = "Completed"
826
+ CREATED = "Created"
827
+
828
+
829
+ class TransportKindDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
830
+ """TransportKindDto."""
831
+
832
+ NORMAL_FORKLIFT = "NormalForklift"
833
+ LARGE_FORKLIFT = "LargeForklift"
834
+ SIDE_LOADING_FORKLIFT = "SideLoadingForklift"
835
+
836
+
837
+ class UnitOfMeasureDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
838
+ """UnitOfMeasureDto."""
839
+
840
+ MILLIMETER = "Millimeter"
841
+ INCH = "Inch"
842
+
843
+
844
+ class UpdateAmcRequestStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
845
+ """UpdateAmcRequestStatusDto."""
846
+
847
+ DRAFT = "Draft"
848
+ APPROVE = "Approve"
849
+ REJECT = "Reject"
850
+
851
+
852
+ class UpdateAmcSpecificationStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
853
+ """UpdateAmcSpecificationStatusDto."""
854
+
855
+ NOT_MODIFIED = "NotModified"
856
+ RELEASED = "Released"
857
+ OBSOLETE = "Obsolete"
858
+
859
+
860
+ class UpdateAmcTypeStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
861
+ """UpdateAmcTypeStatusDto."""
862
+
863
+ NOT_MODIFIED = "NotModified"
864
+ RELEASED = "Released"
865
+ OBSOLETE = "Obsolete"
866
+
867
+
430
868
  class UploadStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
431
869
  """UploadStatusDto."""
432
870
 
@@ -435,6 +873,23 @@ class UploadStatusDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
435
873
  DELETED = "Deleted"
436
874
 
437
875
 
876
+ class UtilizationTypeDto(str, Enum, metaclass=CaseInsensitiveEnumMeta):
877
+ """UtilizationTypeDto."""
878
+
879
+ POWER_ON = "PowerOn"
880
+ TWENTY_FOUR_SEVEN = "TwentyFourSeven"
881
+ ACTIVE_ORDER = "ActiveOrder"
882
+ MACHINE_CALENDAR = "MachineCalendar"
883
+ FACTORY_CALENDAR = "FactoryCalendar"
884
+
885
+
886
+ class WorkOrderDiscussionContentType(int, Enum, metaclass=CaseInsensitiveEnumMeta):
887
+ """WorkOrderDiscussionContentType."""
888
+
889
+ ZERO = 0
890
+ ONE = 1
891
+
892
+
438
893
  class WorkorderStatus(str, Enum, metaclass=CaseInsensitiveEnumMeta):
439
894
  """WorkorderStatus."""
440
895