Input$CalculateTargetShoppingCartInput constructor
Input$CalculateTargetShoppingCartInput({
- required Enum$OrderTypeEnum orderType,
- Input$MarketPlaceOrderDtoFeesInput? fees,
- List<
Input$MarketPlaceOrderDtoExtraFeesInput> ? extraFees, - Input$FullAddressInput? deliveryAddress,
- Input$DiscountDtoInput? discount,
- required List<
Input$CartProductInput> products, - Input$TargetACIInput? target,
Implementation
factory Input$CalculateTargetShoppingCartInput({
required Enum$OrderTypeEnum orderType,
Input$MarketPlaceOrderDtoFeesInput? fees,
List<Input$MarketPlaceOrderDtoExtraFeesInput>? extraFees,
Input$FullAddressInput? deliveryAddress,
Input$DiscountDtoInput? discount,
required List<Input$CartProductInput> products,
Input$TargetACIInput? target,
}) =>
Input$CalculateTargetShoppingCartInput._({
r'orderType': orderType,
if (fees != null) r'fees': fees,
if (extraFees != null) r'extraFees': extraFees,
if (deliveryAddress != null) r'deliveryAddress': deliveryAddress,
if (discount != null) r'discount': discount,
r'products': products,
if (target != null) r'target': target,
});