Class Release
- Namespace
- Concordium.Sdk.Types
- Assembly
- Concordium.Sdk.dll
An individual release of a locked balance.
public sealed record Release : IEquatable<Release>
- Inheritance
-
Release
- Implements
- Inherited Members
Constructors
Release(DateTimeOffset, CcdAmount, IList<TransactionHash>)
An individual release of a locked balance.
public Release(DateTimeOffset Timestamp, CcdAmount Amount, IList<TransactionHash> Transactions)
Parameters
Timestamp
DateTimeOffsetEffective time of the release.
Amount
CcdAmountAmount to be released.
Transactions
IList<TransactionHash>List of transaction hashes that contribute a balance to this release.
Properties
Amount
Amount to be released.
public CcdAmount Amount { get; init; }
Property Value
Timestamp
Effective time of the release.
public DateTimeOffset Timestamp { get; init; }
Property Value
Transactions
List of transaction hashes that contribute a balance to this release.
public IList<TransactionHash> Transactions { get; init; }