# Functions
WasBadRequest returns true if the HttpResponse is non-nil and has a status code of BadRequest.
WasConflict returns true if the HttpResponse is non-nil and has a status code of Conflict.
WasForbidden returns true if the HttpResponse is non-nil and has a status code of Forbidden.
WasNotFound returns true if the HttpResponse is non-nil and has a status code of NotFound.
WasStatusCode returns true if the HttpResponse is non-nil and matches the Status Code It's recommended to use WasBadRequest/WasConflict/WasNotFound where possible instead.