IPaymentMethodPluginOnBeforeUpdatePaymentProfile Method |
Called before payment profile, that corresponds to a payment method implemented by this plugin, is updated
Namespace:
Atomia.Billing.Core.Sdk.Plugins
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax void OnBeforeUpdatePaymentProfile(
Guid paymentProfileId,
PaymentProfileStatus newStatus,
Dictionary<string, string> attributes
)
Sub OnBeforeUpdatePaymentProfile (
paymentProfileId As Guid,
newStatus As PaymentProfileStatus,
attributes As Dictionary(Of String, String)
)
void OnBeforeUpdatePaymentProfile(
Guid paymentProfileId,
PaymentProfileStatus newStatus,
Dictionary<String^, String^>^ attributes
)
abstract OnBeforeUpdatePaymentProfile :
paymentProfileId : Guid *
newStatus : PaymentProfileStatus *
attributes : Dictionary<string, string> -> unit
Parameters
- paymentProfileId
- Type: SystemGuid
The payment profile id. - newStatus
- Type: Atomia.Billing.Core.Sdk.BusinessObjectsPaymentProfileStatus
The new status. - attributes
- Type: System.Collections.GenericDictionaryString, String
The attributes.
See Also