/** * Success response status code. */ export const HTTP_STATUS_CODE_SUCCESS = 200; /** * Created response status code. */ export const HTTP_STATUS_CODE_CREATED = 201; /** * No content response status code. */ export const HTTP_STATUS_CODE_NO_CONTENT = 204; /** * HTTP status code for "Not Acceptable" error. */ export const HTTP_STATUS_CODE_NOT_ACCEPTED = 406;