Try our conversational search powered by Generative AI!

Interface ISplitPaymentPlugin

Interface to process payment associated with shipment.

Namespace: EPiServer.Commerce.Order
Assembly: EPiServer.Business.Commerce.dll
Version: 12.17.2
Syntax
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(IOrderGroup, IPayment, IShipment)

Process payment associated with shipment.

Declaration
PaymentProcessingResult ProcessPayment(IOrderGroup orderGroup, IPayment payment, IShipment shipment)
Parameters
Type Name Description
IOrderGroup orderGroup

The order group.

IPayment payment

The payment.

IShipment shipment

The shipment.

Returns
Type Description
PaymentProcessingResult

True if process successful, otherwise False.