Search Results for

    Show / Hide Table of Contents

    Class LineItemPriceDetail

    Price details about a line item

    Inheritance
    System.Object
    LineItemPriceDetail
    Implements
    System.ComponentModel.INotifyPropertyChanged
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Dangl.AVACloud.Client
    Assembly: Dangl.AVACloud.Client.dll
    Syntax
    public class LineItemPriceDetail : INotifyPropertyChanged

    Properties

    | Improve this Doc View Source

    AbsoluteDiscountPerItem

    A discount for this line item, given as an absolute value. It is essentially the difference between NetPrice (or the list price)
    and the actual invoiced price GrossPrice.

    Declaration
    [JsonProperty("absoluteDiscountPerItem", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public decimal? AbsoluteDiscountPerItem { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Decimal>
    | Improve this Doc View Source

    BaseQuantity

    The quantity for which this price is valid

    Declaration
    [JsonProperty("baseQuantity", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public decimal? BaseQuantity { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Decimal>
    | Improve this Doc View Source

    BaseQuantityUnitCode

    A code representing the unit for the base quantity

    Declaration
    [JsonProperty("baseQuantityUnitCode", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string BaseQuantityUnitCode { get; set; }
    Property Value
    Type Description
    System.String
    | Improve this Doc View Source

    GrossPrice

    The gross price of this line item, meaning the price without taxes
    that will be invoiced

    Declaration
    [JsonProperty("grossPrice", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public decimal? GrossPrice { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Decimal>
    | Improve this Doc View Source

    NetPrice

    The net price of this line item

    Declaration
    [JsonProperty("netPrice", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public decimal? NetPrice { get; set; }
    Property Value
    Type Description
    System.Nullable<System.Decimal>

    Methods

    | Improve this Doc View Source

    FromJson(String)

    Declaration
    public static LineItemPriceDetail FromJson(string data)
    Parameters
    Type Name Description
    System.String data
    Returns
    Type Description
    LineItemPriceDetail
    | Improve this Doc View Source

    RaisePropertyChanged(String)

    Declaration
    protected virtual void RaisePropertyChanged(string propertyName = null)
    Parameters
    Type Name Description
    System.String propertyName
    | Improve this Doc View Source

    ToJson()

    Declaration
    public string ToJson()
    Returns
    Type Description
    System.String

    Events

    | Improve this Doc View Source

    PropertyChanged

    Declaration
    public event PropertyChangedEventHandler PropertyChanged
    Event Type
    Type Description
    System.ComponentModel.PropertyChangedEventHandler

    Implements

    System.ComponentModel.INotifyPropertyChanged
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Dangl IT GmbH