mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 07:06:54 +01:00
* WithDescription * WithConsumer / WithProvider * x * . * . * . * . * fix * pact * nullable * ficx * . * fix
54 lines
1.2 KiB
C#
54 lines
1.2 KiB
C#
using System;
|
|
|
|
namespace WireMock.Admin.Requests;
|
|
|
|
/// <summary>
|
|
/// Request Log Model
|
|
/// </summary>
|
|
public class LogEntryModel
|
|
{
|
|
/// <summary>
|
|
/// The unique identifier.
|
|
/// </summary>
|
|
public Guid Guid { get; set; }
|
|
|
|
/// <summary>
|
|
/// The request.
|
|
/// </summary>
|
|
public LogRequestModel Request { get; set; }
|
|
|
|
/// <summary>
|
|
/// The response.
|
|
/// </summary>
|
|
public LogResponseModel Response { get; set; }
|
|
|
|
/// <summary>
|
|
/// The mapping unique identifier.
|
|
/// </summary>
|
|
public Guid? MappingGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// The mapping unique title.
|
|
/// </summary>
|
|
public string MappingTitle { get; set; }
|
|
|
|
/// <summary>
|
|
/// The request match result.
|
|
/// </summary>
|
|
public LogRequestMatchModel RequestMatchResult { get; set; }
|
|
|
|
/// <summary>
|
|
/// The partial mapping unique identifier.
|
|
/// </summary>
|
|
public Guid? PartialMappingGuid { get; set; }
|
|
|
|
/// <summary>
|
|
/// The partial mapping unique title.
|
|
/// </summary>
|
|
public string PartialMappingTitle { get; set; }
|
|
|
|
/// <summary>
|
|
/// The partial request match result.
|
|
/// </summary>
|
|
public LogRequestMatchModel PartialRequestMatchResult { get; set; }
|
|
} |