Class OnchainRefundOutcome
- Namespace
- NArk.ArkadeIntents.Onchain
- Assembly
- NArk.ArkadeIntents.dll
What a pass over an on-board's L1 refund found.
public sealed record OnchainRefundOutcome : IEquatable<OnchainRefundOutcome>
- Inheritance
-
OnchainRefundOutcome
- Implements
- Inherited Members
Constructors
OnchainRefundOutcome(bool, string?, string?)
What a pass over an on-board's L1 refund found.
public OnchainRefundOutcome(bool Refunded, string? Detail = null, string? Txid = null)
Parameters
RefundedboolTrue when this pass broadcast the refund.
DetailstringWhy not, when it did not.
TxidstringThe refund transaction, when one was broadcast.
Properties
Detail
Why not, when it did not.
public string? Detail { get; init; }
Property Value
Refunded
True when this pass broadcast the refund.
public bool Refunded { get; init; }
Property Value
Txid
The refund transaction, when one was broadcast.
public string? Txid { get; init; }