-
Notifications
You must be signed in to change notification settings - Fork 2
ParcelNote
Greg Kolinski edited this page Nov 28, 2017
·
5 revisions
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;}
}
- 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.
Getting Started
- Getting Started - Basics
- Getting Started - Extended Capabilities
- HTTP Connections
- Visual Studio SOAP Connections
- About ECGridOS and Loren Data Corp.
- Documentation & Nomenclature
- Using Web Services
- Networks & Mailboxes
- Users & Authorization Levels
- API Keys & Sessions
- Trading Partners & ECGridIDs
- Interconnects & Trading Partnerships
- Parcels, Interchanges & Mailbags
- Carbon Copies
ECGridOS API Calls
- API Calls - Full Definitions Available
- Asynchronous API Calls - Events
- Asynchronous API Calls - Task\Async\Await