Input$LoyaltySettingsPrelevelInput constructor

Input$LoyaltySettingsPrelevelInput({
  1. String? name,
  2. Input$PictureInput? picture,
  3. int? lossAmount,
  4. int? inactivityCycle,
  5. Input$LoyaltySettingsPrelevelPerksInput? perks,
  6. String? color,
  7. Input$LoyaltySettingsOnsiteConverterSetPrelevelInput? onsiteConverter,
  8. Input$PictureInput? cardPicture,
})

Implementation

factory Input$LoyaltySettingsPrelevelInput({
  String? name,
  Input$PictureInput? picture,
  int? lossAmount,
  int? inactivityCycle,
  Input$LoyaltySettingsPrelevelPerksInput? perks,
  String? color,
  Input$LoyaltySettingsOnsiteConverterSetPrelevelInput? onsiteConverter,
  Input$PictureInput? cardPicture,
}) =>
    Input$LoyaltySettingsPrelevelInput._({
      if (name != null) r'name': name,
      if (picture != null) r'picture': picture,
      if (lossAmount != null) r'lossAmount': lossAmount,
      if (inactivityCycle != null) r'inactivityCycle': inactivityCycle,
      if (perks != null) r'perks': perks,
      if (color != null) r'color': color,
      if (onsiteConverter != null) r'onsiteConverter': onsiteConverter,
      if (cardPicture != null) r'cardPicture': cardPicture,
    });