-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathApiTechnologyObjectType.cs
More file actions
88 lines (87 loc) · 2.31 KB
/
ApiTechnologyObjectType.cs
File metadata and controls
88 lines (87 loc) · 2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Copyright (c) 2026, Siemens AG
//
// SPDX-License-Identifier: MIT
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace Siemens.Simatic.S7.Webserver.API.Enums
{
/// <summary>
/// Enum of all possible technology objects
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public enum ApiTechnologyObjectType
{
/// <summary>
/// Technology Object SpeedAxis
/// </summary>
To_SpeedAxis,
/// <summary>
/// Technology Object PositioningAxis
/// </summary>
To_PositioningAxis,
/// <summary>
/// Technology Object PositioningAxis_PTO
/// </summary>
To_PositioningAxis_Pto,
/// <summary>
/// Technology Object SynchronousAxis
/// </summary>
To_SynchronousAxis,
/// <summary>
/// Technology Object ExternalEncoder
/// </summary>
To_ExternalEncoder,
/// <summary>
/// Technology Object MeasuringInput
/// </summary>
To_MeasuringInput,
/// <summary>
/// Technology Object OutputCam
/// </summary>
To_OutputCam,
/// <summary>
/// Technology Object CamTrack
/// </summary>
To_CamTrack,
/// <summary>
/// Technology Object Cam
/// </summary>
To_Cam,
/// <summary>
/// Technology Object Kinematics
/// </summary>
To_Kinematics,
/// <summary>
/// Technology Object LeadingAxisProxy
/// </summary>
To_LeadingAxisProxy,
/// <summary>
/// Technology Object Cam_10K
/// </summary>
To_Cam_10k,
/// <summary>
/// Technology Object Interpreter
/// </summary>
To_Interpreter,
/// <summary>
/// Technology Object InterpreterMapping
/// </summary>
To_InterpreterMapping,
/// <summary>
/// Technology Object InterpreterProgram
/// </summary>
To_InterpreterProgram,
/// <summary>
/// Technology Object Cam_600
/// </summary>
To_Cam_600,
/// <summary>
/// Technology Object Cam_6k
/// </summary>
To_Cam_6k,
/// <summary>
/// Unknown
/// </summary>
Unknown
}
}