-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathApiTicketState.cs
More file actions
39 lines (37 loc) · 1.1 KB
/
ApiTicketState.cs
File metadata and controls
39 lines (37 loc) · 1.1 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
// Copyright (c) 2026, Siemens AG
//
// SPDX-License-Identifier: MIT
namespace Siemens.Simatic.S7.Webserver.API.Enums
{
/// <summary>
/// Possible Api ticket states
/// </summary>
public enum ApiTicketState
{
/// <summary>
/// Should never be the case
/// </summary>
None = 0,
/// <summary>
/// The Ticket has been created and no further functions have been executed for the ticket
/// </summary>
Created = 1,
/// <summary>
/// The Ticket is currently active (e.g. during download/upload)
/// </summary>
Active = 2,
/// <summary>
/// Currently never the case
/// </summary>
Busy = 3,
/// <summary>
/// After successful handling of the Ticket functions the Ticket will be in Completed state
/// </summary>
Completed = 4,
/// <summary>
/// The Ticket is in Failed state => something went wrong during Ticket execution
/// => Upload/Download has not been successful etc.
/// </summary>
Failed = 5
}
}