| | | 1 | | using System; |
| | | 2 | | using WireMock.Matchers.Request; |
| | | 3 | | |
| | | 4 | | namespace WireMock.Logging |
| | | 5 | | { |
| | | 6 | | /// <summary> |
| | | 7 | | /// LogEntry |
| | | 8 | | /// </summary> |
| | | 9 | | public class LogEntry |
| | | 10 | | { |
| | | 11 | | /// <summary> |
| | | 12 | | /// Gets or sets the unique identifier. |
| | | 13 | | /// </summary> |
| | | 14 | | /// <value> |
| | | 15 | | /// The unique identifier. |
| | | 16 | | /// </value> |
| | 104 | 17 | | public Guid Guid { get; set; } |
| | | 18 | | |
| | | 19 | | /// <summary> |
| | | 20 | | /// Gets or sets the request message. |
| | | 21 | | /// </summary> |
| | | 22 | | /// <value> |
| | | 23 | | /// The request message. |
| | | 24 | | /// </value> |
| | 888 | 25 | | public RequestMessage RequestMessage { get; set; } |
| | | 26 | | |
| | | 27 | | /// <summary> |
| | | 28 | | /// Gets or sets the response message. |
| | | 29 | | /// </summary> |
| | | 30 | | /// <value> |
| | | 31 | | /// The response message. |
| | | 32 | | /// </value> |
| | 747 | 33 | | public ResponseMessage ResponseMessage { get; set; } |
| | | 34 | | |
| | | 35 | | /// <summary> |
| | | 36 | | /// Gets or sets the request match result. |
| | | 37 | | /// </summary> |
| | | 38 | | /// <value> |
| | | 39 | | /// The request match result. |
| | | 40 | | /// </value> |
| | 277 | 41 | | public RequestMatchResult RequestMatchResult { get; set; } |
| | | 42 | | |
| | | 43 | | /// <summary> |
| | | 44 | | /// Gets or sets the mapping unique identifier. |
| | | 45 | | /// </summary> |
| | | 46 | | /// <value> |
| | | 47 | | /// The mapping unique identifier. |
| | | 48 | | /// </value> |
| | 104 | 49 | | public Guid? MappingGuid { get; set; } |
| | | 50 | | |
| | | 51 | | /// <summary> |
| | | 52 | | /// Gets or sets the mapping unique title. |
| | | 53 | | /// </summary> |
| | | 54 | | /// <value> |
| | | 55 | | /// The mapping unique title. |
| | | 56 | | /// </value> |
| | 104 | 57 | | public string MappingTitle { get; set; } |
| | | 58 | | } |
| | | 59 | | } |