[csharp][generichost] Add Option struct to enable better validation (#15977)

* add Option struct to enable better validation

* use kebab case
This commit is contained in:
devhl-labs
2023-07-03 02:40:24 -04:00
committed by GitHub
parent e2f5997592
commit 00fcaa15c0
119 changed files with 2845 additions and 2262 deletions

View File

@@ -1036,6 +1036,38 @@ paths:
type: string
type: array
style: form
- explode: true
in: query
name: requiredNotNullable
required: true
schema:
nullable: false
type: string
style: form
- explode: true
in: query
name: requiredNullable
required: true
schema:
nullable: true
type: string
style: form
- explode: true
in: query
name: notRequiredNotNullable
required: false
schema:
nullable: false
type: string
style: form
- explode: true
in: query
name: notRequiredNullable
required: false
schema:
nullable: true
type: string
style: form
responses:
"200":
description: Success