import { ProductFulfillmentShipmentDto } from './../../product/fulfillment/fulfillment-shipment.dto'; import { ProductFulfillmentTypeDto } from './../../product/fulfillment/fulfillment-type.dto'; import { ProductFulfillmentPartnerDto } from './../../product/fulfillment/fulfillment-partner.dto'; import { ProductFulfillmentCrossReferenceItemDto } from './../../product/fulfillment/fulfillment-cross-reference-item.dto'; export declare class ProductFulfillmentDto { fulfillmentTypes: ProductFulfillmentTypeDto[]; provisioningType: string; id: string; fulfillmentPartners: ProductFulfillmentPartnerDto[]; pinQuantity: number; shipment: ProductFulfillmentShipmentDto; endOfShelfLifeDate: string | null; crossReferenceItem: ProductFulfillmentCrossReferenceItemDto; constructor(d?: ProductFulfillmentDto); }