Class ResultFilter
Predicate filter on the result query parameter of the
/api/v1/transactions list endpoint — restricts the
listing to successful or unsuccessful transactions.
Inherited Members
Namespace: Hiero.Mirror.Filters
Assembly: Hiero.dll
Syntax
public sealed class ResultFilter : IMirrorFilter, IMirrorQueryParameter
Remarks
The two values are the OpenAPI enum success | fail.
Exposed as static properties (following the OrderBy
precedent) rather than factories because the value set is
closed and fully known at compile time.
Fields
| Edit this page View SourceFail
Filter matching only transactions whose consensus result was anything other than success.
Declaration
public static readonly ResultFilter Fail
Field Value
| Type | Description |
|---|---|
| ResultFilter |
Success
Filter matching only transactions that reached a successful consensus result.
Declaration
public static readonly ResultFilter Success
Field Value
| Type | Description |
|---|---|
| ResultFilter |
Properties
| Edit this page View SourceName
The query parameter name recognized by the remote mirror node.
Declaration
public string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
Value
The value of the query parameter sent to the mirror node.
Declaration
public string Value { get; }
Property Value
| Type | Description |
|---|---|
| string |