Skip to content

Interface: OAuth2SecurityScheme

Properties

PropertyType
description?string
flows{ authorizationCode?: { authorizationUrl: string; refreshUrl?: string; scopes: { [scope: string]: string; }; tokenUrl: string; }; clientCredentials?: { refreshUrl?: string; scopes: { [scope: string]: string; }; tokenUrl: string; }; implicit?: { authorizationUrl: string; refreshUrl?: string; scopes: { [scope: string]: string; }; }; password?: { refreshUrl?: string; scopes: { [scope: string]: string; }; tokenUrl: string; }; }
flows.authorizationCode?{ authorizationUrl: string; refreshUrl?: string; scopes: { [scope: string]: string; }; tokenUrl: string; }
flows.authorizationCode.authorizationUrlstring
flows.authorizationCode.refreshUrl?string
flows.authorizationCode.scopes{ [scope: string]: string; }
flows.authorizationCode.tokenUrlstring
flows.clientCredentials?{ refreshUrl?: string; scopes: { [scope: string]: string; }; tokenUrl: string; }
flows.clientCredentials.refreshUrl?string
flows.clientCredentials.scopes{ [scope: string]: string; }
flows.clientCredentials.tokenUrlstring
flows.implicit?{ authorizationUrl: string; refreshUrl?: string; scopes: { [scope: string]: string; }; }
flows.implicit.authorizationUrlstring
flows.implicit.refreshUrl?string
flows.implicit.scopes{ [scope: string]: string; }
flows.password?{ refreshUrl?: string; scopes: { [scope: string]: string; }; tokenUrl: string; }
flows.password.refreshUrl?string
flows.password.scopes{ [scope: string]: string; }
flows.password.tokenUrlstring
type"oauth2"