forked from microsoftgraph/msgraph-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathActionState.cs
More file actions
29 lines (29 loc) · 968 Bytes
/
Copy pathActionState.cs
File metadata and controls
29 lines (29 loc) · 968 Bytes
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
// <auto-generated/>
using System.Runtime.Serialization;
using System;
namespace ApiSdk.Models {
/// <summary>State of the action on the device</summary>
public enum ActionState {
/// <summary>Not a valid action state</summary>
[EnumMember(Value = "none")]
None,
/// <summary>Action is pending</summary>
[EnumMember(Value = "pending")]
Pending,
/// <summary>Action has been cancelled.</summary>
[EnumMember(Value = "canceled")]
Canceled,
/// <summary>Action is active.</summary>
[EnumMember(Value = "active")]
Active,
/// <summary>Action completed without errors.</summary>
[EnumMember(Value = "done")]
Done,
/// <summary>Action failed</summary>
[EnumMember(Value = "failed")]
Failed,
/// <summary>Action is not supported.</summary>
[EnumMember(Value = "notSupported")]
NotSupported,
}
}