Input$MarketPlaceOrderWithCartAndCoinsInput constructor
Input$MarketPlaceOrderWithCartAndCoinsInput({
- String? user,
- String? notes,
- required Enum$OrderTypeEnum orderType,
- Input$InstallmentInput? installment,
- Input$FullAddressInput? deliveryAddress,
- required DateTime orderTime,
- required Input$CartProductInput product,
- String? currency,
- Input$TargetACIInput? target,
Implementation
factory Input$MarketPlaceOrderWithCartAndCoinsInput({
String? user,
String? notes,
required Enum$OrderTypeEnum orderType,
Input$InstallmentInput? installment,
Input$FullAddressInput? deliveryAddress,
required DateTime orderTime,
required Input$CartProductInput product,
String? currency,
Input$TargetACIInput? target,
}) =>
Input$MarketPlaceOrderWithCartAndCoinsInput._({
if (user != null) r'user': user,
if (notes != null) r'notes': notes,
r'orderType': orderType,
if (installment != null) r'installment': installment,
if (deliveryAddress != null) r'deliveryAddress': deliveryAddress,
r'orderTime': orderTime,
r'product': product,
if (currency != null) r'currency': currency,
if (target != null) r'target': target,
});