Search Results for

    Show / Hide Table of Contents

    Class ShipmentItemInputObject

    A ShipmentItem pricing input object

    Inheritance
    System.Object
    ShipmentItemInputObject
    Namespace: Simplic.Logistics.Pricing
    Assembly: Simplic.Logistics.Pricing.dll
    Syntax
    public class ShipmentItemInputObject : IInputObject

    Properties

    | Improve this Doc View Source

    ActualFromDeliveryDate

    Gets or sets the actual delivery date

    Declaration
    public DateTime? ActualFromDeliveryDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>
    | Improve this Doc View Source

    ActualFromLoadDate

    Gets or sets the actual load date.

    Declaration
    public DateTime? ActualFromLoadDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>
    | Improve this Doc View Source

    ActualOrderDate

    Gets or sets the actual order date

    Declaration
    public DateTime? ActualOrderDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>
    | Improve this Doc View Source

    ActualQuantity

    Gest or sets the actual quantity

    Declaration
    public double ActualQuantity { get; set; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    ActualToDeliveryDate

    Gets or sets the actual end of the delivery date.

    Declaration
    public DateTime? ActualToDeliveryDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>
    | Improve this Doc View Source

    ActualToLoadDate

    Gets or sets the acutal end of the load date.

    Declaration
    public DateTime? ActualToLoadDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>
    | Improve this Doc View Source

    ActualWeight

    Gets or sets the actual weight

    Declaration
    public double ActualWeight { get; set; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    Article

    Gets or sets the article

    Declaration
    public PricingArticle Article { get; set; }
    Property Value
    Type Description
    PricingArticle
    | Improve this Doc View Source

    Conditions

    Gets or sets the conditions

    Declaration
    public IList<Condition> Conditions { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IList<Condition>
    | Improve this Doc View Source

    CurrentCondition

    Gets or sets the current condition

    Declaration
    public Condition CurrentCondition { get; set; }
    Property Value
    Type Description
    Condition
    | Improve this Doc View Source

    CurrentPrice

    Gets the current price

    Declaration
    public double CurrentPrice { get; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    CustomVariableValues

    Gest or sets the custom pricing variables

    Declaration
    public IList<CustomVariableValue> CustomVariableValues { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IList<CustomVariableValue>
    | Improve this Doc View Source

    DeliveryAddress

    Gets or sets the delivery address

    Declaration
    public PricingAddress DeliveryAddress { get; set; }
    Property Value
    Type Description
    PricingAddress
    | Improve this Doc View Source

    DeliveryNumber

    Gets or sets the delivery number

    Declaration
    public string DeliveryNumber { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    Distance

    Gets or sets the actual shipment distance (from load to delivery address) in km.

    Declaration
    public double Distance { get; set; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    FromDeliveryDate

    Gets or sets the delivery date

    Declaration
    public DateTime FromDeliveryDate { get; set; }
    Property Value
    Type Description
    System.DateTime
    | Improve this Doc View Source

    FromLoadDate

    Gets or sets the load date.

    Declaration
    public DateTime FromLoadDate { get; set; }
    Property Value
    Type Description
    System.DateTime
    | Improve this Doc View Source

    GroupingKey

    Gets or sets the grouping key

    Declaration
    public string GroupingKey { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    InvoiceAddress

    Gets or sets the invoice address

    Declaration
    public PricingAddress InvoiceAddress { get; set; }
    Property Value
    Type Description
    PricingAddress
    | Improve this Doc View Source

    ItemGuid

    Gets or sets the item guid

    Declaration
    public Guid ItemGuid { get; set; }
    Property Value
    Type Description
    System.Guid
    | Improve this Doc View Source

    ItemText

    Gets or sets the item text

    Declaration
    public string ItemText { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    LoadAddress

    Gets or sets the load address

    Declaration
    public PricingAddress LoadAddress { get; set; }
    Property Value
    Type Description
    PricingAddress
    | Improve this Doc View Source

    LoadingAid

    Gets or sets the loading aid instance

    Declaration
    public PricingLoadingAid LoadingAid { get; set; }
    Property Value
    Type Description
    PricingLoadingAid
    | Improve this Doc View Source

    LoadingMeters

    Gets or sets the loading aids

    Declaration
    public double LoadingMeters { get; set; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    LoadNumber

    Gets or sets the load number

    Declaration
    public string LoadNumber { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    MixedFromDeliveryDate

    Gets the delivery date.

    Will try to get the actual from delivery date first, when it is null or default will try to get the planned from delivery date, when that is also null or default will return the from delivery date.

    Declaration
    public DateTime MixedFromDeliveryDate { get; }
    Property Value
    Type Description
    System.DateTime
    | Improve this Doc View Source

    MixedFromLoadDate

    Gets the delivery date.

    Will try to get the actual from load date first, when it is null or default will try to get the planned from load date, when that is also null or default will return the from load date.

    Declaration
    public DateTime MixedFromLoadDate { get; }
    Property Value
    Type Description
    System.DateTime
    | Improve this Doc View Source

    MixedQuantity

    Gets the actual quantity if it has a value, otherwise gets the planned quantity

    Declaration
    public double MixedQuantity { get; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    MixedToDeliveryDate

    Gets the delivery date.

    Will try to get the actual to delivery date first, when it is null or default will try to get the planned to delivery date, when that is also null or default will return the to delivery date.

    Declaration
    public DateTime MixedToDeliveryDate { get; }
    Property Value
    Type Description
    System.DateTime
    | Improve this Doc View Source

    MixedToLoadDate

    Gets the delivery date.

    Will try to get the actual to load date first, when it is null or default will try to get the planned to load date, when that is also null or default will return the to load date.

    Declaration
    public DateTime MixedToLoadDate { get; }
    Property Value
    Type Description
    System.DateTime
    | Improve this Doc View Source

    MixedWeight

    Gets the actual weight if it has a value, otherwise gets the planned weight. If none of the values is set return the mixed quantity.

    Declaration
    public double MixedWeight { get; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    Notes

    Gets or sets the note

    Declaration
    public string Notes { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    OrderDate

    Gets or sets the order date

    Declaration
    public DateTime OrderDate { get; set; }
    Property Value
    Type Description
    System.DateTime
    | Improve this Doc View Source

    Pitches

    Gets or sets the calculated or manually set pitches

    Declaration
    public double Pitches { get; set; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    PlannedFromDeliveryDate

    Gets or sets the planned delivery date

    Declaration
    public DateTime? PlannedFromDeliveryDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>
    | Improve this Doc View Source

    PlannedFromLoadDate

    Gets or sets the planned load date.

    Declaration
    public DateTime? PlannedFromLoadDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>
    | Improve this Doc View Source

    PlannedOrderDate

    Gets or sets the planned order date

    Declaration
    public DateTime PlannedOrderDate { get; set; }
    Property Value
    Type Description
    System.DateTime
    | Improve this Doc View Source

    PlannedQuantity

    Gets or sets the planned quantity

    Declaration
    public double PlannedQuantity { get; set; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    PlannedToDeliveryDate

    Gets or sets the planned end of the delivery date.

    Declaration
    public DateTime? PlannedToDeliveryDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>
    | Improve this Doc View Source

    PlannedToLoadDate

    Gets or sets the planned end of the load date.

    Declaration
    public DateTime? PlannedToLoadDate { get; set; }
    Property Value
    Type Description
    System.Nullable<System.DateTime>
    | Improve this Doc View Source

    PlannedWeight

    Gets or sets the planned weight

    Declaration
    public double PlannedWeight { get; set; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    Price

    Gets or sets the price

    Declaration
    public double Price { get; set; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    Protocol

    Gets or sets the protocol

    Declaration
    public IList<ProtocolEntry> Protocol { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IList<ProtocolEntry>
    | Improve this Doc View Source

    QuantityUnit

    Gets or sets the quantity unit

    Declaration
    public PricingQuantityUnit QuantityUnit { get; set; }
    Property Value
    Type Description
    PricingQuantityUnit
    | Improve this Doc View Source

    ReferenceContext

    Gets the reference context

    Declaration
    public string ReferenceContext { get; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    ReferenceGuid

    Gets or sets the reference guid

    Declaration
    public Guid ReferenceGuid { get; set; }
    Property Value
    Type Description
    System.Guid
    | Improve this Doc View Source

    SenderAddress

    Gets or sets the sender address

    Declaration
    public PricingAddress SenderAddress { get; set; }
    Property Value
    Type Description
    PricingAddress
    | Improve this Doc View Source

    ShipmentId

    Gets or sets the shipment id

    Declaration
    public Guid ShipmentId { get; set; }
    Property Value
    Type Description
    System.Guid
    | Improve this Doc View Source

    ShipmentNr

    Gets or sets the shipment nr

    Declaration
    public string ShipmentNr { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    TagGroups

    Gets or sets the tag groups

    Declaration
    public IList<string> TagGroups { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IList<System.String>
    | Improve this Doc View Source

    Tags

    Gets or sest the tags

    Declaration
    public IList<string> Tags { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.IList<System.String>
    | Improve this Doc View Source

    Target

    Gets or sets the caller. E.g. customer, carrier, supplier

    Declaration
    public string Target { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    ToDeliveryDate

    Gets or sets the end of delivery date.

    Declaration
    public DateTime ToDeliveryDate { get; set; }
    Property Value
    Type Description
    System.DateTime
    | Improve this Doc View Source

    TollDistance

    Gets or sets the toll distance of a shipment in km.

    Declaration
    public double TollDistance { get; set; }
    Property Value
    Type Description
    System.Double
    | Improve this Doc View Source

    ToLoadDate

    Gets or sets the end of the load date.

    Declaration
    public DateTime ToLoadDate { get; set; }
    Property Value
    Type Description
    System.DateTime
    | Improve this Doc View Source

    TransportOrderNr

    Gets or sets the transport order nr

    Declaration
    public string TransportOrderNr { get; set; }
    Property Value
    Type Description
    System.String
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2018 SIMPLIC GmbH
    Generated by DocFx