make uninterpreted_option an array

This commit is contained in:
Christopher Fenn 2024-04-05 16:19:04 +02:00
parent 5bd37a9de1
commit 99e8a060f6
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ export interface UninterpretedOption {
export interface MethodOptions {
deprecated: boolean;
idempotency_level: IdempotencyLevel;
uninterpreted_option: UninterpretedOption;
uninterpreted_option: UninterpretedOption[];
[k: string]: unknown;
}