Status401
public typealias Status401 = ResponseErrorBodyWrapper<Body, ValidateStatus401ErrorBodyStrategy>
A type alias for ResponseErrorBodyWrapper with a status code validation strategy for status code 401.
The Status401 type alias provides a convenient way to use ResponseErrorBodyWrapper with the ValidateStatus401ErrorBodyStrategy.
It represents the error response body of a request where the status code is expected to be 401.
Example usage:
@ResponseErrorBody<Body>.Status401 var body: Body
View on GitHub