feat: auto auth detect (#299)

This commit is contained in:
Ryan Brink
2022-08-19 09:46:41 -06:00
committed by GitHub
parent 196fba790a
commit e589d917c8
13 changed files with 497 additions and 28 deletions

View File

@ -39,6 +39,6 @@ data class PathOperation(
var responses: Map<Int, Response>? = null,
var callbacks: Map<String, PathOperation>? = null,
var deprecated: Boolean = false,
var security: List<Map<String, List<String>>>? = null,
var security: MutableList<Map<String, List<String>>>? = null,
var servers: List<Server>? = null,
)