Class AccountBalanceFilter
Predicate filter on the account.balance query parameter
used by the account-list and balance-snapshot endpoints.
Construct via one of the static factories — the ctor is
private so the operator is always explicit at the call site.
Inheritance
AccountBalanceFilter
Assembly: Hiero.dll
Syntax
public sealed class AccountBalanceFilter : IMirrorFilter, IMirrorQueryParameter
Properties
|
Edit this page
View Source
Name
The query parameter name recognized by the remote mirror node.
Declaration
public string Name { get; }
Property Value
|
Edit this page
View Source
Value
The value of the query parameter sent to the mirror node —
already includes the operator prefix where applicable.
Declaration
public string Value { get; }
Property Value
Methods
|
Edit this page
View Source
After(long)
Records whose balance is strictly greater than the given
tinybar value (gt:).
Declaration
public static AccountBalanceFilter After(long tinybars)
Parameters
| Type |
Name |
Description |
| long |
tinybars |
|
Returns
|
Edit this page
View Source
Before(long)
Records whose balance is strictly less than the given
tinybar value (lt:).
Declaration
public static AccountBalanceFilter Before(long tinybars)
Parameters
| Type |
Name |
Description |
| long |
tinybars |
|
Returns
|
Edit this page
View Source
Is(long)
Records whose balance equals the given tinybar value.
Declaration
public static AccountBalanceFilter Is(long tinybars)
Parameters
| Type |
Name |
Description |
| long |
tinybars |
|
Returns
|
Edit this page
View Source
NotIs(long)
Records whose balance is not equal to the given tinybar
value (ne:).
Declaration
public static AccountBalanceFilter NotIs(long tinybars)
Parameters
| Type |
Name |
Description |
| long |
tinybars |
|
Returns
|
Edit this page
View Source
OnOrAfter(long)
Records whose balance is at or greater than the given
tinybar value (gte:).
Declaration
public static AccountBalanceFilter OnOrAfter(long tinybars)
Parameters
| Type |
Name |
Description |
| long |
tinybars |
|
Returns
|
Edit this page
View Source
OnOrBefore(long)
Records whose balance is at or less than the given tinybar
value (lte:).
Declaration
public static AccountBalanceFilter OnOrBefore(long tinybars)
Parameters
| Type |
Name |
Description |
| long |
tinybars |
|
Returns
Implements