Table of Contents

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 DateTimeOffset

Effective time of the release.

Amount CcdAmount

Amount 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

CcdAmount

Timestamp

Effective time of the release.

public DateTimeOffset Timestamp { get; init; }

Property Value

DateTimeOffset

Transactions

List of transaction hashes that contribute a balance to this release.

public IList<TransactionHash> Transactions { get; init; }

Property Value

IList<TransactionHash>