/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Contact } from './Contact'; /** * * @export * @interface DeliveryAdditionalInfo */ export interface DeliveryAdditionalInfo { /** * * @type {Contact} * @memberof DeliveryAdditionalInfo */ contact?: Contact; /** * Total quantity of all products in the basket * @type {string} * @memberof DeliveryAdditionalInfo */ numberOfItemsBasket?: string; /** * Specifies whether the delivery and the billing addresses are the same * @type {string} * @memberof DeliveryAdditionalInfo */ addressDeliveryBillingMatchIndicator?: string; /** * The date on which the last delivery address used by the merchant's account was reported in the transaction * @type {string} * @memberof DeliveryAdditionalInfo */ deliveryAddressCreationDate?: string; /** * Estimated Delivery Delay (in days) by the Merchant * @type {string} * @memberof DeliveryAdditionalInfo */ estimatedDeliveryDelay?: string; /** * Delivery Method (Postal Office or Amazon box and so on) * @type {string} * @memberof DeliveryAdditionalInfo */ deliveryMode?: string; } /** * Check if a given object implements the DeliveryAdditionalInfo interface. */ export declare function instanceOfDeliveryAdditionalInfo(value: object): boolean; export declare function DeliveryAdditionalInfoFromJSON(json: any): DeliveryAdditionalInfo; export declare function DeliveryAdditionalInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeliveryAdditionalInfo; export declare function DeliveryAdditionalInfoToJSON(value?: DeliveryAdditionalInfo | null): any;