predefined options should always be returned with their default value

This commit is contained in:
Christopher Fenn 2024-04-05 16:00:04 +02:00
parent 4c185fa2e6
commit 260966c070
1 changed files with 3 additions and 3 deletions

View File

@ -137,9 +137,9 @@ export interface UninterpretedOption {
}
export interface MethodOptions {
deprecated?: boolean;
idempotency_level?: IdempotencyLevel|keyof typeof IdempotencyLevel;
uninterpreted_option?: UninterpretedOption;
deprecated: boolean;
idempotency_level: IdempotencyLevel|keyof typeof IdempotencyLevel;
uninterpreted_option: UninterpretedOption;
[k: string]: unknown;
}