PaymentMethodsHelperUpdatePaymentProfile Method |
Note: This API is now obsolete.
Modifies the payment profile.
Namespace:
Atomia.Billing.Core.Sdk.BusinessLogic
Assembly:
Atomia.Billing.Core.Sdk (in Atomia.Billing.Core.Sdk.dll) Version: 18.10.7096.28998
Syntax [ObsoleteAttribute("Use same method from PaymentProfileHelper class!",
false)]
public static void UpdatePaymentProfile(
Guid paymentProfileId,
PaymentProfileStatus newStatus,
Dictionary<string, string> attributes
)
<ObsoleteAttribute("Use same method from PaymentProfileHelper class!",
false)>
Public Shared Sub UpdatePaymentProfile (
paymentProfileId As Guid,
newStatus As PaymentProfileStatus,
attributes As Dictionary(Of String, String)
)
public:
[ObsoleteAttribute(L"Use same method from PaymentProfileHelper class!",
false)]
static void UpdatePaymentProfile(
Guid paymentProfileId,
PaymentProfileStatus newStatus,
Dictionary<String^, String^>^ attributes
)
[<ObsoleteAttribute("Use same method from PaymentProfileHelper class!",
false)>]
static member UpdatePaymentProfile :
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. Put null if attributes should not be updated.
See Also