/**
 * DHL Express APIs (MyDHL API)
 * Welcome to the official DHL Express APIs (MyDHL API) below are the published API Documentation to fulfill your shipping needs with DHL Express.       Please follow the process described [here](https://developer.dhl.com/api-reference/dhl-express-mydhl-api#get-started-section/user-guide--get-access) to request access to the DHL Express - MyDHL API services    In case you already have DHL Express - MyDHL API Service credentials please ensure to use the endpoints/environments listed  [here](https://developer.dhl.com/api-reference/dhl-express-mydhl-api#get-started-section/user-guide--environments)
 *
 * OpenAPI spec version: 2.4.0
 *
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */
import { SupermodelIoLogisticsExpressCreateShipmentResponseCustomerDetails } from './supermodel-io-logistics-express-create-shipment-response-customer-details';
import { SupermodelIoLogisticsExpressCreateShipmentResponseDestinationServiceArea } from './supermodel-io-logistics-express-create-shipment-response-destination-service-area';
import { SupermodelIoLogisticsExpressCreateShipmentResponseOriginServiceArea } from './supermodel-io-logistics-express-create-shipment-response-origin-service-area';
import { SupermodelIoLogisticsExpressCreateShipmentResponsePickupDetails } from './supermodel-io-logistics-express-create-shipment-response-pickup-details';
import { SupermodelIoLogisticsExpressCreateShipmentResponseValueAddedServices } from './supermodel-io-logistics-express-create-shipment-response-value-added-services';
/**
 *
 * @export
 * @interface SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
 */
export interface SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails {
    /**
     * This array contains all the DHL Express special handling feature codes
     * @type {Array<string>}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    serviceHandlingFeatureCodes?: Array<string>;
    /**
     * Here you can find calculated volumetric weight based on dimensions provided in the request
     * @type {number}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    volumetricWeight?: number;
    /**
     * Here you can find billing code which was applied on your shipment
     * @type {string}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    billingCode?: string;
    /**
     * Here you can find the DHL Express shipment content code of your shipment
     * @type {string}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    serviceContentCode?: string;
    /**
     *
     * @type {SupermodelIoLogisticsExpressCreateShipmentResponseCustomerDetails}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    customerDetails?: SupermodelIoLogisticsExpressCreateShipmentResponseCustomerDetails;
    /**
     *
     * @type {SupermodelIoLogisticsExpressCreateShipmentResponseOriginServiceArea}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    originServiceArea?: SupermodelIoLogisticsExpressCreateShipmentResponseOriginServiceArea;
    /**
     *
     * @type {SupermodelIoLogisticsExpressCreateShipmentResponseDestinationServiceArea}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    destinationServiceArea?: SupermodelIoLogisticsExpressCreateShipmentResponseDestinationServiceArea;
    /**
     * Here you can find DHL Routing Code which was applied on your shipment
     * @type {string}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    dhlRoutingCode?: string;
    /**
     * Here you can find DHL Routing Data ID which was applied on your shipment
     * @type {string}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    dhlRoutingDataId?: string;
    /**
     * Here you can find Delivery Date Code which was applied on your shipment
     * @type {string}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    deliveryDateCode?: string;
    /**
     * Here you can find Delivery Time Code which was applied on your shipment
     * @type {string}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    deliveryTimeCode?: string;
    /**
     * Here you can find the product short name of your shipment
     * @type {string}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    productShortName?: string;
    /**
     *
     * @type {Array<SupermodelIoLogisticsExpressCreateShipmentResponseValueAddedServices>}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    valueAddedServices?: Array<SupermodelIoLogisticsExpressCreateShipmentResponseValueAddedServices>;
    /**
     *
     * @type {SupermodelIoLogisticsExpressCreateShipmentResponsePickupDetails}
     * @memberof SupermodelIoLogisticsExpressCreateShipmentResponseShipmentDetails
     */
    pickupDetails?: SupermodelIoLogisticsExpressCreateShipmentResponsePickupDetails;
}
