import CONSTANTS from "../config/constants";

const getRequestName = (type: number) => {
  if (Number(type) === CONSTANTS.REQUEST_TYPE.GUEST)
    return "Guest";
  else if (Number(type) === CONSTANTS.REQUEST_TYPE.TENANT_MOVEMENT)
    return "Movement";
  else if (Number(type) === CONSTANTS.REQUEST_TYPE.MOVE_OUT)
    return "MoveOut";
  else if (Number(type) === CONSTANTS.REQUEST_TYPE.REFUND)
    return "Refund";
  else if (Number(type) === CONSTANTS.REQUEST_TYPE.ROOM_SELECTION)
    return "Room";
  else return "New";
};

export default getRequestName;
