/**
 * Fulfillment API
 *  - alpha: Currently developed API version. Subject to major changes. - beta: A semi-stable early access version. New features can be added. Breaking changes are possible. - stable: The API is recommended for use in production.  [Changelog](https://fulfillment-api.steve.niceshops.com/v2/docs/changelog.html)  All data is transferred in UTF-8 encoding.\\ The API uses stateless HTTP. No cookies have to be kept.\\ Authentication via OAuth2 client credentials flow.  [Privacy Policy](https://www.niceshops.com/en/dienstleistungen/data-privacy-policy)  [Fulfillment API PHP client @Packagist](https://packagist.org/packages/datenkraft/bb-fulfillment-api-php-client)
 *
 * The version of the OpenAPI document: v2.beta
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { PatchInboundDeliveryProduct } from './patch-inbound-delivery-product';
/**
 * Data to update an existing inbound delivery. All fields are optional. Only provided fields will be updated.  Product changes: - To update a product\'s announced count: include the product with the new announcedCount. - To remove a product: include the product with announcedCount set to 0. - To add a new product: include a product that is not yet part of the delivery with a positive announcedCount. - Products not listed in the products array remain unchanged.
 * @export
 * @interface PatchInboundDelivery
 */
export interface PatchInboundDelivery {
    /**
     * Updated expected date of arrival in the warehouse (timezone CET/CEST)
     * @type {string}
     * @memberof PatchInboundDelivery
     */
    'expectedDeliveryDate'?: string;
    /**
     * Updated name of the inbound delivery. Must not be empty or consist only of whitespace characters.
     * @type {string}
     * @memberof PatchInboundDelivery
     */
    'inboundDeliveryName'?: string;
    /**
     * Updated note for the inbound delivery.
     * @type {string}
     * @memberof PatchInboundDelivery
     */
    'inboundDeliveryNote'?: string | null;
    /**
     * Products to update, add, or remove. Only listed products are affected; unlisted products remain unchanged. - To update a product\'s announced count: include the product with the new announcedCount. - To remove a product: include the product with announcedCount set to 0. - To add a new product: include the product with a positive announcedCount.
     * @type {Array<PatchInboundDeliveryProduct>}
     * @memberof PatchInboundDelivery
     */
    'products'?: Array<PatchInboundDeliveryProduct>;
}
