Class UpdateDetails
- Namespace
- Concordium.Sdk.Types
- Assembly
- Concordium.Sdk.dll
Details of an update instruction. These are free, and we only ever get a response for them if the update is successfully enqueued, hence no failure cases.
public sealed record UpdateDetails : IBlockItemSummaryDetails, IEquatable<UpdateDetails>
- Inheritance
-
UpdateDetails
- Implements
- Inherited Members
Constructors
UpdateDetails(DateTimeOffset, IUpdatePayload)
Details of an update instruction. These are free, and we only ever get a response for them if the update is successfully enqueued, hence no failure cases.
public UpdateDetails(DateTimeOffset EffectiveTime, IUpdatePayload Payload)
Parameters
EffectiveTime
DateTimeOffsetTransaction time
Payload
IUpdatePayloadUpdate information
Properties
EffectiveTime
Transaction time
public DateTimeOffset EffectiveTime { get; init; }
Property Value
Payload
Update information
public IUpdatePayload Payload { get; init; }