Interface StatusShipment
Interface for a shipment send for a status refresh.
Namespace: Simplic.Logistics.SchemaRegistry
Assembly: Simplic.Logistics.SchemaRegistry.dll
Syntax
public interface StatusShipment : ShipmentBase
Properties
| Improve this Doc View SourceCarrierAddressId
Gets or sets the carrier address id.
Declaration
Guid? CarrierAddressId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
IsDeleted
Gets or sets whether the shipment is deleted.
Declaration
bool IsDeleted { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Items
Gets or sets the shipment items.
Declaration
IList<StatusShipmentItem> Items { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<StatusShipmentItem> |
Tours
Gets or sets the tours.
Declaration
IList<TourBase> Tours { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<TourBase> |
TransportOrder
Gets or sets the transport order.
Declaration
TransportOrderBase TransportOrder { get; set; }
Property Value
Type | Description |
---|---|
TransportOrderBase |
TransportOrderId
Gets or sets the transport order id.
Declaration
Guid? TransportOrderId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |