-
-
Save shamohai/06b800c739fc0a92d2c9ec066c330888 to your computer and use it in GitHub Desktop.
ApiLogEntry
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class ApiLogEntry | |
| { | |
| public long ApiLogEntryId { get; set; } // The (database) ID for the API log entry. | |
| public string Application { get; set; } // The application that made the request. | |
| public string User { get; set; } // The user that made the request. | |
| public string Machine { get; set; } // The machine that made the request. | |
| public string RequestIpAddress { get; set; } // The IP address that made the request. | |
| public string RequestContentType { get; set; } // The request content type. | |
| public string RequestContentBody { get; set; } // The request content body. | |
| public string RequestUri { get; set; } // The request URI. | |
| public string RequestMethod { get; set; } // The request method (GET, POST, etc). | |
| public string RequestRouteTemplate { get; set; } // The request route template. | |
| public string RequestRouteData { get; set; } // The request route data. | |
| public string RequestHeaders { get; set; } // The request headers. | |
| public DateTime? RequestTimestamp { get; set; } // The request timestamp. | |
| public string ResponseContentType { get; set; } // The response content type. | |
| public string ResponseContentBody { get; set; } // The response content body. | |
| public int? ResponseStatusCode { get; set; } // The response status code. | |
| public string ResponseHeaders { get; set; } // The response headers. | |
| public DateTime? ResponseTimestamp { get; set; } // The response timestamp. | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment