AutoReloadConfigurationRequest constructor

AutoReloadConfigurationRequest({
  1. required String customerId,
  2. required bool enabled,
  3. String? paymentMethodId,
  4. int? reloadAmount,
  5. int? reloadThreshold,
})

Implementation

AutoReloadConfigurationRequest({
  required this.customerId,
  required this.enabled,
  this.paymentMethodId,
  this.reloadAmount,
  this.reloadThreshold,
});