@liberquack/utils
Version:
Quack utilities
13 lines • 420 B
JavaScript
export class AbstractPaymentClientProvider {
/**
* Sometimes payment providers may require 1 round trip... Internally
* an error will be thrown if round trip count is greater than maxRoundTrips
*
* @return maxRoundTrip integer representing how many round trips are expected
*/
maxRoundTrips() {
return 1;
}
;
}
//# sourceMappingURL=abstract-payment-client-provider.js.map