Bases: Protocol
Base class for security parameters.
apply
Source code in fastagency/api/openapi/security.py
| def apply(
self,
q_params: dict[str, Any],
body_dict: dict[str, Any],
security: BaseSecurity,
) -> None: ...
|
get_security_class
Source code in fastagency/api/openapi/security.py
| def get_security_class(self) -> type[BaseSecurity]: ...
|