Input$MarketPlaceOrderWithCartForGuestInput constructor
Input$MarketPlaceOrderWithCartForGuestInput({
- String? notes,
- required Enum$OrderTypeEnum orderType,
- List<
Input$InstallmentInput> ? installments, - Input$MarketPlaceOrderDtoFeesInput? fees,
- List<
Input$MarketPlaceOrderDtoExtraFeesInput> ? extraFees, - Input$FullAddressInput? deliveryAddress,
- required DateTime orderTime,
- Input$DiscountDtoInput? discount,
- required List<
Input$CartProductInput> products, - required Input$CurrencyIdNameType currency,
- Input$TargetACIInput? target,
- Enum$UserEventsSourceEnum? source,
- List<
Enum$App> ? apps, - String? orderSubject,
- required String email,
- required String lastName,
- required String firstName,
- required Input$IPhoneInput phone,
- List<
Input$FullAddressInput> ? billingAddress,
Implementation
factory Input$MarketPlaceOrderWithCartForGuestInput({
String? notes,
required Enum$OrderTypeEnum orderType,
List<Input$InstallmentInput>? installments,
Input$MarketPlaceOrderDtoFeesInput? fees,
List<Input$MarketPlaceOrderDtoExtraFeesInput>? extraFees,
Input$FullAddressInput? deliveryAddress,
required DateTime orderTime,
Input$DiscountDtoInput? discount,
required List<Input$CartProductInput> products,
required Input$CurrencyIdNameType currency,
Input$TargetACIInput? target,
Enum$UserEventsSourceEnum? source,
List<Enum$App>? apps,
String? orderSubject,
required String email,
required String lastName,
required String firstName,
required Input$IPhoneInput phone,
List<Input$FullAddressInput>? billingAddress,
}) =>
Input$MarketPlaceOrderWithCartForGuestInput._({
if (notes != null) r'notes': notes,
r'orderType': orderType,
if (installments != null) r'installments': installments,
if (fees != null) r'fees': fees,
if (extraFees != null) r'extraFees': extraFees,
if (deliveryAddress != null) r'deliveryAddress': deliveryAddress,
r'orderTime': orderTime,
if (discount != null) r'discount': discount,
r'products': products,
r'currency': currency,
if (target != null) r'target': target,
if (source != null) r'source': source,
if (apps != null) r'apps': apps,
if (orderSubject != null) r'orderSubject': orderSubject,
r'email': email,
r'lastName': lastName,
r'firstName': firstName,
r'phone': phone,
if (billingAddress != null) r'billingAddress': billingAddress,
});