(obj: any)
| 586 | * False otherwise. |
| 587 | */ |
| 588 | export function isHttpResponseBadRequest(obj: any): obj is HttpResponseBadRequest { |
| 589 | return obj instanceof HttpResponseBadRequest || |
| 590 | (typeof obj === 'object' && obj !== null && obj.isHttpResponseBadRequest === true); |
| 591 | } |
| 592 | |
| 593 | /** |
| 594 | * Represent an HTTP response with the status 401 - UNAUTHORIZED. |
no outgoing calls