Right now we don't have support for extra parameters related to searching or sorting. Instead of users having to to go _post and _get methods in the base class we should expost this directly.
def list(self, ...., params: Dict = None);
....
subscribers = client.subsribers.list(..., params={"param1": "value1, "param2": "value2"}
This is a "low level" fix for #6, but there are room for both.
Right now we don't have support for extra parameters related to searching or sorting. Instead of users having to to go
_postand_getmethods in the base class we should expost this directly.This is a "low level" fix for #6, but there are room for both.