PaymentMethodsHelperAddPaymentProfile Method |
Note: This API is now obsolete.
Adds 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 Guid AddPaymentProfile(
Guid accountId,
string paymentMethodName,
string pluginName,
string guiPluginName,
Dictionary<string, string> attributes
)
<ObsoleteAttribute("Use same method from PaymentProfileHelper class!",
false)>
Public Shared Function AddPaymentProfile (
accountId As Guid,
paymentMethodName As String,
pluginName As String,
guiPluginName As String,
attributes As Dictionary(Of String, String)
) As Guid
public:
[ObsoleteAttribute(L"Use same method from PaymentProfileHelper class!",
false)]
static Guid AddPaymentProfile(
Guid accountId,
String^ paymentMethodName,
String^ pluginName,
String^ guiPluginName,
Dictionary<String^, String^>^ attributes
)
[<ObsoleteAttribute("Use same method from PaymentProfileHelper class!",
false)>]
static member AddPaymentProfile :
accountId : Guid *
paymentMethodName : string *
pluginName : string *
guiPluginName : string *
attributes : Dictionary<string, string> -> Guid
Parameters
- accountId
- Type: SystemGuid
The account id. - paymentMethodName
- Type: SystemString
The payment method name. - pluginName
- Type: SystemString
The payment plugin name. - guiPluginName
- Type: SystemString
The GUI plugin name. - attributes
- Type: System.Collections.GenericDictionaryString, String
The attributes.
Return Value
Type:
GuidCreated payment profile id.
See Also