interface EnumValueOptionsAmino {
    deprecated?: boolean;
    uninterpreted_option?: UninterpretedOptionAmino[];
}

Properties

deprecated?: boolean

Is this enum value deprecated? Depending on the target platform, this can emit Deprecated annotations for the enum value, or it will be completely ignored; in the very least, this is a formalization for deprecating enum values.

uninterpreted_option?: UninterpretedOptionAmino[]

The parser stores options it doesn't recognize here. See above.