interface MethodOptionsAmino {
    deprecated?: boolean;
    idempotency_level?: MethodOptions_IdempotencyLevel;
    uninterpreted_option?: UninterpretedOptionAmino[];
}

Properties

deprecated?: boolean

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

idempotency_level?: MethodOptions_IdempotencyLevel
uninterpreted_option?: UninterpretedOptionAmino[]

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