ParcelNote - LorenData/ECGrid-API GitHub Wiki
Back To Object Classes
public partial class ParcelNote {
public long ParcelID {get;set;}
public int ParcelNoteID {get;set;}
public long InterchangeID {get;set;}
public DateTime NoteDate {get;set;}
public string StatusCode {get;set;}
public string PostedBy {get;set;}
public int UserID {get;set;}
public string Note {get;set;}
}
Public Properties
- ParcelID - Long: The value assigned to a specific Parcel.
- ParcelNoteID - Integer: The serial number assigned to the specific Parcel Note.
- InterchangeID - Long: The serial number assigned to a referenced Interchange, can be zero (0).
- NoteDate - DateTime: The date/time the Note was posted to the system (UTC).
- StatusCode - String: The current status code associated with this Parcel. The 'M' prefix refers to the Parcel (Mailbag). The suffix is a Short.
- PostedBy - String: The name of the person or system that posted the note.
- UserID - Integer: The UserID for the user account that posted the note. If posted by the system, the UserID will equal zero (0).
- Note - String: The text of the Note itself.
Back To Object Classes