Try our conversational search powered by Generative AI!

Class OrderNote

Represents a note on an order.

Inheritance
System.Object
OrderNote
Implements
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.Commerce.Orders
Assembly: Mediachase.Commerce.dll
Version: 10.8.0
Syntax
public class OrderNote : IOrderNote

Constructors

OrderNote()

Declaration
public OrderNote()

Properties

Created

Gets or sets the created date.

Declaration
public DateTime Created { get; set; }
Property Value
Type Description
System.DateTime

CustomerId

Gets or sets the customer id.

Declaration
public Guid CustomerId { get; set; }
Property Value
Type Description
System.Guid

Detail

Gets or sets the detail.

Declaration
public string Detail { get; set; }
Property Value
Type Description
System.String

LineItemId

Gets or sets the lineitem .

Declaration
public int? LineItemId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

OrderGroupId

Gets or sets the order note ID.

Declaration
public int? OrderGroupId { get; }
Property Value
Type Description
System.Nullable<System.Int32>

OrderNoteId

Gets or sets the order note ID. Set is available for backwards compatibility only.

Declaration
public int? OrderNoteId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Title

Gets or sets the title.

Declaration
public string Title { get; set; }
Property Value
Type Description
System.String

Type

Gets or sets the note type.

Declaration
public string Type { get; set; }
Property Value
Type Description
System.String

Implements