Reflection information for a protobuf enumeration value.

interface EnumValueInfo {
    localName: string;
    name: string;
    no: number;
}

Properties

Properties

localName: string

The name of the enumeration value in generated code.

name: string

The name of the enumeration value, as specified in the protobuf source.

no: number

The numeric enumeration value, as specified in the protobuf source.

Generated using TypeDoc