Class TradeEvent<T>.ExecutionSettled
Assets transferred, books closed.
public sealed record TradeEvent<T>.ExecutionSettled : TradeEvent<T>, ITradeEvent<RichTradeAction, T>, IEvent<T>, IEquatable<IEvent<T>>, IEquatable<TradeEvent<T>>, IEquatable<TradeEvent<T>.ExecutionSettled>
- Inheritance
-
TradeEvent<T>TradeEvent<T>.ExecutionSettled
- Implements
-
IEvent<T>IEquatable<IEvent<T>>IEquatable<TradeEvent<T>>
- Inherited Members
Constructors
ExecutionSettled(RichTradeAction, Guid, T)
Construct an ExecutionSettled event.
public ExecutionSettled(RichTradeAction action, Guid executionId, T settledAt)
Parameters
actionRichTradeActionexecutionIdGuidsettledAtT
Properties
Action
The action that produced this event (carried for correlation and audit).
public override RichTradeAction Action { get; }
Property Value
ExecutionId
Exchange-assigned execution id.
public Guid ExecutionId { get; }
Property Value
SettledAt
Time settlement completed.
public T SettledAt { get; }
Property Value
- T
Time
The time at which this event's fact occurred.
public override T Time { get; }
Property Value
- T