Skip to content

Latest commit

 

History

History
30 lines (25 loc) · 2.76 KB

OrderRequest.md

File metadata and controls

30 lines (25 loc) · 2.76 KB

conekta.model.OrderRequest

Load the model package

import 'package:conekta/api.dart';

Properties

Name Type Description Notes
charges BuiltList<ChargeRequest> List of charges that are applied to the order [optional]
checkout CheckoutRequest [optional]
currency String Currency with which the payment will be made. It uses the 3-letter code of the International Standard ISO 4217.
customerInfo OrderRequestCustomerInfo
discountLines BuiltList<OrderDiscountLinesRequest> List of discounts that are applied to the order. You must have at least one discount. [optional]
fiscalEntity OrderFiscalEntityRequest [optional]
lineItems BuiltList<Product> List of products that are sold in the order. You must have at least one product.
metadata BuiltMap<String, JsonObject> Metadata associated with the order [optional]
needsShippingContact bool Allows you to fill out the shipping information at checkout [optional]
preAuthorize bool Indicates whether the order charges must be preauthorized [optional] [default to false]
processingMode String Indicates the processing mode for the order, either ecommerce, recurrent or validation. [optional]
returnUrl String Indicates the redirection callback upon completion of the 3DS2 flow. Do not use this parameter if your order has a checkout parameter [optional]
shippingContact CustomerShippingContacts [optional]
shippingLines BuiltList<ShippingRequest> List of shipping costs. If the online store offers digital products. [optional]
taxLines BuiltList<OrderTaxRequest> List of taxes that are applied to the order. [optional]
threeDsMode String Indicates the 3DS2 mode for the order, either smart or strict. [optional]

[Back to Model list] [Back to API list] [Back to README]