Table of Contents

Enum StatUpdateAction

Namespace
DatabentoDotNet.Dbn
Assembly
DatabentoDotNet.Dbn.dll

The type of StatMsg update.

public enum StatUpdateAction : byte

Fields

Delete = 2

A removal of a statistic.

New = 1

A new statistic.

Remarks

Purely numeric — this type has no wire string form. Upstream marks it #[non_exhaustive]; Databento may add variants in a future release without that being a breaking change. Rust marks New as the type's default, but C#'s implicit default(StatUpdateAction) is the zero value (StatUpdateAction)0, which has no name here — reference New explicitly where upstream's default matters.