In case anyone would read the gateway class implementations we should avoid the surprise of not finding those two methods, that are mentioned in the solidus guides for creating custom gateways.
What
Add the methods along with documentation, consider using either a raise NotImplementedError or a # noop comment as the implementation.
This might be impacted by #266 in case those methods will be implemented because of it.
Why
In case anyone would read the gateway class implementations we should avoid the surprise of not finding those two methods, that are mentioned in the solidus guides for creating custom gateways.
What
Add the methods along with documentation, consider using either a
raise NotImplementedError
or a# noop
comment as the implementation.This might be impacted by #266 in case those methods will be implemented because of it.