SessionEvents - LorenData/ECGrid-API GitHub Wiki
Back To Object Classes
public partial class SessionEvents {
public APICall APICall {get;set;}
public DateTime Date {get;set;}
public int Milliseconds {get;set;}
public string ip {get;set;}
public RetCode ReturnCode {get;set;}
public string Comment {get;set;}
}
Public Properties
- APICall - Enum APICall: A numeric value to represent the API Call for session event.
- Date - DateTime: The DateTime for the session event.
- Milliseconds - Integer: The execution time for the call.
- ip - String: The Internet Protocol (IP) address for this session event.
- ReturnCode - Enum RetCode: A numeric value to indicate the return code result for the call.
- Comment - String: Related comments logged in the system.
Back To Object Classes