Interface ISplitPaymentPlugin
Interface to proccess payment associated with shipment.
Namespace: EPiServer.Commerce.Order
Assembly: Mediachase.Commerce.dll
Version: 10.8.0Syntax
public interface ISplitPaymentPlugin
Properties
Settings
Returns the configuration data associated with a plugin. Sets the configuration plugin data. This data typically includes information like plugin URL, account info and so on.
Declaration
IDictionary<string, string> Settings { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IDictionary<System.String, System.String> |
Methods
ProcessPayment(IPayment, IShipment, ref String)
Process payment associated with shipment.
Declaration
bool ProcessPayment(IPayment payment, IShipment shipment, ref string message)
Parameters
| Type | Name | Description |
|---|---|---|
| IPayment | payment | The payment. |
| IShipment | shipment | The shipment. |
| System.String | message | The message. |
Returns
| Type | Description |
|---|---|
| System.Boolean |
|