Input$SetupLoyaltyLevelsAiInput constructor

Input$SetupLoyaltyLevelsAiInput({
  1. double? numLevels,
  2. double? avgBasketValue,
  3. double? rewardPercent,
  4. double? inactiveDays,
  5. String? businessDescription,
  6. String? tone,
  7. List<String>? brandColors,
  8. String? language,
  9. double? pointValue,
  10. String? currency,
  11. double? avgMonthlyVisits,
})

Implementation

factory Input$SetupLoyaltyLevelsAiInput({
  double? numLevels,
  double? avgBasketValue,
  double? rewardPercent,
  double? inactiveDays,
  String? businessDescription,
  String? tone,
  List<String>? brandColors,
  String? language,
  double? pointValue,
  String? currency,
  double? avgMonthlyVisits,
}) =>
    Input$SetupLoyaltyLevelsAiInput._({
      if (numLevels != null) r'numLevels': numLevels,
      if (avgBasketValue != null) r'avgBasketValue': avgBasketValue,
      if (rewardPercent != null) r'rewardPercent': rewardPercent,
      if (inactiveDays != null) r'inactiveDays': inactiveDays,
      if (businessDescription != null)
        r'businessDescription': businessDescription,
      if (tone != null) r'tone': tone,
      if (brandColors != null) r'brandColors': brandColors,
      if (language != null) r'language': language,
      if (pointValue != null) r'pointValue': pointValue,
      if (currency != null) r'currency': currency,
      if (avgMonthlyVisits != null) r'avgMonthlyVisits': avgMonthlyVisits,
    });