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 SourceAbsoluteDiscountPerItem
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> |
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> |
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 |
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> |
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 SourceFromJson(String)
Declaration
public static LineItemPriceDetail FromJson(string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data |
Returns
Type | Description |
---|---|
LineItemPriceDetail |
RaisePropertyChanged(String)
Declaration
protected virtual void RaisePropertyChanged(string propertyName = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName |
ToJson()
Declaration
public string ToJson()
Returns
Type | Description |
---|---|
System.String |
Events
| Improve this Doc View SourcePropertyChanged
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type | Description |
---|---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged