import BaseClass from "../utils/BaseClass"; import { MultiRelationship, SingleRelationship } from "../typings/Library"; import { ShippingMethodCollection } from './ShippingMethod'; import { ParcelCollection } from './Parcel'; import { AttachmentCollection } from './Attachment'; import { ShippingCategoryCollection } from './ShippingCategory'; import { StockLocationCollection } from './StockLocation'; import { AddressCollection } from './Address'; import { ShipmentLineItemCollection } from './ShipmentLineItem'; import { StockTransferCollection } from './StockTransfer'; import { DeliveryLeadTimeCollection } from './DeliveryLeadTime'; export declare class ShipmentCollection extends BaseClass { static className: string; _getRates: number; _onHold: number; _packing: number; _picking: number; _purchase: number; _readyToShip: number; _ship: number; costAmountCents: number; costAmountFloat: number; createdAt: Date; currencyCode: string; formattedCostAmount: string; id: string; metadata: object; number: string; reference: string; referenceOrigin: string; selectedRateId: string; status: string; updatedAt: Date; attachments: () => MultiRelationship; availableShippingMethods: () => MultiRelationship; parcels: () => MultiRelationship; shipmentLineItems: () => MultiRelationship; shippingAddress: () => SingleRelationship; shippingCategory: () => SingleRelationship; shippingMethod: () => SingleRelationship; stockLocation: () => SingleRelationship; deliveryLeadTime: () => SingleRelationship; stockTransfers: () => MultiRelationship; static define(): void; } declare const Shipment: import("../typings/Library").BaseResource; export default Shipment;