Class LineItemInformation
Information about a single line item
Inheritance
System.Object
LineItemInformation
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 LineItemInformation : INotifyPropertyChanged
Properties
| Improve this Doc View SourceAttributes
Optional additional attributes for this line item
Declaration
[JsonProperty("attributes", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ObservableCollection<LineItemAttribute> Attributes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<LineItemAttribute> |
BuyerIdentifier
An identifier assigned by the buyer, e.g. an internal article number
Declaration
[JsonProperty("buyerIdentifier", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string BuyerIdentifier { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ClassificationIdentifiers
A list of classification identifiers for the line item
Declaration
[JsonProperty("classificationIdentifiers", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ObservableCollection<string> ClassificationIdentifiers { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<System.String> |
CountryOfOrigin
The origin country code according to ISO 3166-1 in 2 letter format
Declaration
[JsonProperty("countryOfOrigin", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string CountryOfOrigin { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Description
A description for the line item
Declaration
[JsonProperty("description", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
A name for the line item
Declaration
[JsonProperty("name", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
SellerIdentifier
An identifier assigned by the seller, e.g. an internal article number
Declaration
[JsonProperty("sellerIdentifier", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string SellerIdentifier { get; set; }
Property Value
Type | Description |
---|---|
System.String |
StandardIdentifier
A standard identifier for the line item, e.g. an EAN or a GTIN
Declaration
[JsonProperty("standardIdentifier", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string StandardIdentifier { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceFromJson(String)
Declaration
public static LineItemInformation FromJson(string data)
Parameters
Type | Name | Description |
---|---|---|
System.String | data |
Returns
Type | Description |
---|---|
LineItemInformation |
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