13 lines
312 B
Dart
13 lines
312 B
Dart
import 'payment_method_types.dart';
|
|
|
|
class TokenizationSettings {
|
|
final PaymentMethodTypes paymentMethodTypes;
|
|
|
|
const TokenizationSettings([this.paymentMethodTypes = PaymentMethodTypes.all]);
|
|
|
|
Map<String, dynamic> toJson() =>
|
|
{
|
|
'paymentMethodTypes': paymentMethodTypes.jsonList(),
|
|
};
|
|
}
|