export enum STATUS_CODES { HTTP100 = 'Continue', HTTP101 = 'Switching Protocols', HTTP102 = 'Processing', HTTP103 = 'Early Hints', HTTP200 = 'OK', HTTP201 = 'Created', HTTP202 = 'Accepted', HTTP203 = 'Non-Authoritative Information', HTTP204 = 'No Content', HTTP205 = 'Reset Content', HTTP206 = 'Partial Content', HTTP207 = 'Multi-Status', HTTP208 = 'Already Reported', HTTP226 = 'IM Used', HTTP300 = 'Multiple Choices', HTTP301 = 'Moved Permanently', HTTP302 = 'Found', HTTP303 = 'See Other', HTTP304 = 'Not Modified', HTTP305 = 'Use Proxy', HTTP307 = 'Temporary Redirect', HTTP308 = 'Permanent Redirect', HTTP400 = 'Bad Request', HTTP401 = 'Unauthorized', HTTP402 = 'Payment Required', HTTP403 = 'Forbidden', HTTP404 = 'Not Found', HTTP405 = 'Method Not Allowed', HTTP406 = 'Not Acceptable', HTTP407 = 'Proxy Authentication Required', HTTP408 = 'Request Timeout', HTTP409 = 'Conflict', HTTP410 = 'Gone', HTTP411 = 'Length Required', HTTP412 = 'Precondition Failed', HTTP413 = 'Payload Too Large', HTTP414 = 'URI Too Long', HTTP415 = 'Unsupported Media Type', HTTP416 = 'Range Not Satisfiable', HTTP417 = 'Expectation Failed', HTTP418 = 'I\'m a teapot', HTTP421 = 'Misdirected Request', HTTP422 = 'Unprocessable Entity', HTTP423 = 'Locked', HTTP424 = 'Failed Dependency', HTTP425 = 'Unordered Collection', HTTP426 = 'Upgrade Required', HTTP428 = 'Precondition Required', HTTP429 = 'Too Many Requests', HTTP431 = 'Request Header Fields Too Large', HTTP451 = 'Unavailable For Legal Reasons', HTTP500 = 'Internal Server Error', HTTP501 = 'Not Implemented', HTTP502 = 'Bad Gateway', HTTP503 = 'Service Unavailable', HTTP504 = 'Gateway Timeout', HTTP505 = 'HTTP Version Not Supported', HTTP506 = 'Variant Also Negotiates', HTTP507 = 'Insufficient Storage', HTTP508 = 'Loop Detected', HTTP509 = 'Bandwidth Limit Exceeded', HTTP510 = 'Not Extended', HTTP511 = 'Network Authentication Required', }