interface MethodOptions {
    deprecated: boolean;
    idempotencyLevel: MethodOptions_IdempotencyLevel;
    uninterpretedOption: UninterpretedOption[];
}

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.

uninterpretedOption: UninterpretedOption[]

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