Table of Contents

Class TransferredWithSchedule

Namespace
Concordium.Sdk.Types
Assembly
Concordium.Sdk.dll

A transfer with schedule was performed possible with a memo.

public sealed record TransferredWithSchedule : IAccountTransactionEffects, IEquatable<TransferredWithSchedule>
Inheritance
TransferredWithSchedule
Implements
Inherited Members

Constructors

TransferredWithSchedule(AccountAddress, IList<(DateTimeOffset, CcdAmount)>, OnChainData?)

A transfer with schedule was performed possible with a memo.

public TransferredWithSchedule(AccountAddress To, IList<(DateTimeOffset, CcdAmount)> Amount, OnChainData? Memo)

Parameters

To AccountAddress

Receiver account.

Amount IList<(DateTimeOffset, CcdAmount)>

The list of releases. Ordered by increasing timestamp.

Memo OnChainData

Additional data attached to the transaction.

Properties

Amount

The list of releases. Ordered by increasing timestamp.

public IList<(DateTimeOffset, CcdAmount)> Amount { get; init; }

Property Value

IList<(DateTimeOffset, CcdAmount)>

Memo

Additional data attached to the transaction.

public OnChainData? Memo { get; init; }

Property Value

OnChainData

To

Receiver account.

public AccountAddress To { get; init; }

Property Value

AccountAddress