Input$LoyaltySettingsPrelevelInput constructor
Input$LoyaltySettingsPrelevelInput({
- String? name,
- Input$PictureInput? picture,
- int? lossAmount,
- int? inactivityCycle,
- Input$LoyaltySettingsPrelevelPerksInput? perks,
- String? color,
- Input$LoyaltySettingsOnsiteConverterSetPrelevelInput? onsiteConverter,
- 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,
});