-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTransactionEventOutcome.cs
More file actions
46 lines (40 loc) · 1.36 KB
/
TransactionEventOutcome.cs
File metadata and controls
46 lines (40 loc) · 1.36 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
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using System;
using System.Runtime.Serialization;
namespace RapidField.SolidInstruments.EventAuthoring
{
/// <summary>
/// Specifies the outcome of the transaction associated with an <see cref="ITransactionEvent" />.
/// </summary>
[DataContract]
public enum TransactionEventOutcome : Int32
{
/// <summary>
/// The outcome of the transaction is not specified.
/// </summary>
[EnumMember]
Unspecified = 0,
/// <summary>
/// The transaction was canceled.
/// </summary>
[EnumMember]
Cancelled = 1,
/// <summary>
/// The transaction failed.
/// </summary>
[EnumMember]
Failed = 2,
/// <summary>
/// The transaction is in progress.
/// </summary>
[EnumMember]
InProgress = 3,
/// <summary>
/// The transaction succeeded.
/// </summary>
[EnumMember]
Succeeded = 4
}
}