Enum Action
- Namespace
- DatabentoDotNet.Reference
- Assembly
- DatabentoDotNet.Reference.dll
A corporate actions action.
[JsonConverter(typeof(ActionJsonConverter))]
public enum Action : byte
- Extension Methods
Fields
Cancelled = 67Cancelled (
C).Deleted = 68Deleted (
D).Inserted = 73Inserted (
I).PaymentDetailsCancelledByIssuer = 80Payment details cancelled by issuer (
P).PaymentDetailsDeletedBySupplier = 81Payment details deleted by supplier (
Q).Updated = 85Updated (
U).
Remarks
One of the nine closed reference enums: byte-backed, one character on the wire, and an
unrecognised code is an error rather than an opaque value. ReferenceWireStrings
carries the argument for all three of those, and for why these are enums where the ten
types behind IReferenceCode<TSelf> are not.
Ported from databento-rs/src/reference/enums.rs:14, and checked against the ACTION
group of the vendored corporate_actions.list_enums response, which reports the same six
codes.