OAuthFlows

class OAuthFlows(d: dict[str, Any] = None, implicit: OAuthFlow = None, password: OAuthFlow = None, clientCredentials: OAuthFlow = None, authorizationCode: OAuthFlow = None)

Allows configuration of the supported OAuth Flows.

property implicit: OAuthFlow | None

Configuration for the OAuth Implicit flow.

property password: OAuthFlow | None

Configuration for the OAuth Resource Owner Password flow.

property clientCredentials: OAuthFlow | None

Configuration for the OAuth Client Credentials flow. Previously called application in OpenAPI 2.0.

property authorizationCode: OAuthFlow | None

Configuration for the OAuth Authorization Code flow. Previously called accessCode in OpenAPI 2.0.