Projects:LoyaltyManagement/Technical Guide/PaymentProviderExtension
Extend
In case you want to modify the connector you just need to take into account that you will need to call to invokePaymentServer() for calling the Redemption Request.
Example:
enyo.kind({ name: 'SALOY_.UI.PaymentProvider', kind: 'OBLOY_.UI.PaymentProvider', components: [{ // Create components }], dummy: function(){ // Do stuff this.invokePaymentServer(); }, initComponents: function () { this.inherited(arguments); // Do something } });