Release 1.3.0
This commit is contained in:
@@ -20,7 +20,6 @@ class SavedBankCardModuleInputData {
|
||||
String? customerId;
|
||||
bool isSafeDeal;
|
||||
HostParameters? hostParameters;
|
||||
String? applePayID;
|
||||
|
||||
SavedBankCardModuleInputData(
|
||||
{required this.clientApplicationKey,
|
||||
@@ -37,8 +36,7 @@ class SavedBankCardModuleInputData {
|
||||
this.isLoggingEnabled = false,
|
||||
this.customizationSettings = const CustomizationSettings(),
|
||||
this.customerId,
|
||||
this.hostParameters,
|
||||
this.applePayID});
|
||||
this.hostParameters});
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
'clientApplicationKey': clientApplicationKey,
|
||||
@@ -48,7 +46,6 @@ class SavedBankCardModuleInputData {
|
||||
'savePaymentMethod': savePaymentMethod.toString(),
|
||||
'gatewayId': gatewayId,
|
||||
'testModeSettings': testModeSettings?.toJson(),
|
||||
'applePayMerchantIdentifier': applePayID,
|
||||
'shopId': shopId,
|
||||
'returnUrl': returnUrl,
|
||||
'isLoggingEnabled': isLoggingEnabled,
|
||||
|
||||
@@ -26,7 +26,6 @@ class TokenizationModuleInputData {
|
||||
String? customerId;
|
||||
GooglePayParameters googlePayParameters;
|
||||
bool googlePayTestEnvironment;
|
||||
String? applePayID;
|
||||
|
||||
TokenizationModuleInputData(
|
||||
{required this.clientApplicationKey,
|
||||
@@ -47,8 +46,7 @@ class TokenizationModuleInputData {
|
||||
this.applicationScheme,
|
||||
this.customerId,
|
||||
this.googlePayParameters = const GooglePayParameters(),
|
||||
this.googlePayTestEnvironment = false,
|
||||
this.applePayID});
|
||||
this.googlePayTestEnvironment = false});
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
'clientApplicationKey': clientApplicationKey,
|
||||
@@ -60,7 +58,6 @@ class TokenizationModuleInputData {
|
||||
'gatewayId': gatewayId,
|
||||
'tokenizationSettings': tokenizationSettings.toJson(),
|
||||
'testModeSettings': testModeSettings?.toJson(),
|
||||
'applePayMerchantIdentifier': applePayID,
|
||||
'shopId': shopId,
|
||||
'returnUrl': returnUrl,
|
||||
'isLoggingEnabled': isLoggingEnabled,
|
||||
|
||||
Reference in New Issue
Block a user