Is there a reason why all manager responses inherit ManagerResponse but OriginateResponse doesn't?
In our design we use generics to streamline the handling of manager responses but OrignateResponse breaks that design as it does not inherit ManagerResponse.
This is obviously problem on our side. But I'm asking if there is a reason and if not, and it's welcomed, I can make it inherit from ManagerResponse and make a PR.
Is there a reason why all manager responses inherit ManagerResponse but OriginateResponse doesn't?
In our design we use generics to streamline the handling of manager responses but
OrignateResponsebreaks that design as it does not inheritManagerResponse.This is obviously problem on our side. But I'm asking if there is a reason and if not, and it's welcomed, I can make it inherit from
ManagerResponseand make a PR.