Input$DeductAmountFromUserInput constructor
Input$DeductAmountFromUserInput({
- String? amount,
- String? location,
- String? game,
- String? userId,
- String? card,
- Enum$TransactionTypeEnum? reason,
- required Input$TargetACIInput target,
Implementation
factory Input$DeductAmountFromUserInput({
String? amount,
String? location,
String? game,
String? userId,
String? card,
Enum$TransactionTypeEnum? reason,
required Input$TargetACIInput target,
}) =>
Input$DeductAmountFromUserInput._({
if (amount != null) r'amount': amount,
if (location != null) r'location': location,
if (game != null) r'game': game,
if (userId != null) r'userId': userId,
if (card != null) r'card': card,
if (reason != null) r'reason': reason,
r'target': target,
});