Class BakerStakeUpdatedData
- Namespace
- Concordium.Sdk.Types
- Assembly
- Concordium.Sdk.dll
Data contained in the transaction response in case a baker stake was updated (either increased or decreased.)
public sealed record BakerStakeUpdatedData : IEquatable<BakerStakeUpdatedData>
- Inheritance
-
BakerStakeUpdatedData
- Implements
- Inherited Members
Constructors
BakerStakeUpdatedData(BakerId, CcdAmount, bool)
Data contained in the transaction response in case a baker stake was updated (either increased or decreased.)
public BakerStakeUpdatedData(BakerId BakerId, CcdAmount NewStake, bool Increased)
Parameters
BakerId
BakerIdAffected baker.
NewStake
CcdAmountNew stake.
Increased
boolA boolean which indicates whether it increased (
true
) or decreased (false
).
Properties
BakerId
Affected baker.
public BakerId BakerId { get; init; }
Property Value
Increased
A boolean which indicates whether it increased
(true
) or decreased (false
).
public bool Increased { get; init; }
Property Value
NewStake
New stake.
public CcdAmount NewStake { get; init; }