[C#] Check in initial auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / enums / HTLCClaim.cs
1 namespace org { namespace ldk { namespace enums {/**
2  * Describes the type of HTLC claim as determined by analyzing the witness.
3  */
4 public enum HTLCClaim {
5         /**
6          * Claims an offered output on a commitment transaction through the timeout path.
7          */
8         LDKHTLCClaim_OfferedTimeout,
9         /**
10          * Claims an offered output on a commitment transaction through the success path.
11          */
12         LDKHTLCClaim_OfferedPreimage,
13         /**
14          * Claims an accepted output on a commitment transaction through the timeout path.
15          */
16         LDKHTLCClaim_AcceptedTimeout,
17         /**
18          * Claims an accepted output on a commitment transaction through the success path.
19          */
20         LDKHTLCClaim_AcceptedPreimage,
21         /**
22          * Claims an offered/accepted output on a commitment transaction through the revocation path.
23          */
24         LDKHTLCClaim_Revocation,
25 }} } }