using System; namespace WireMock.Admin.Requests { /// /// Request Log Model /// [FluentBuilder.AutoGenerateBuilder] public class LogEntryModel { /// /// The unique identifier. /// public Guid Guid { get; set; } /// /// The request. /// public LogRequestModel Request { get; set; } /// /// The response. /// public LogResponseModel Response { get; set; } /// /// The mapping unique identifier. /// public Guid? MappingGuid { get; set; } /// /// The mapping unique title. /// public string MappingTitle { get; set; } /// /// The request match result. /// public LogRequestMatchModel RequestMatchResult { get; set; } /// /// The partial mapping unique identifier. /// public Guid? PartialMappingGuid { get; set; } /// /// The partial mapping unique title. /// public string PartialMappingTitle { get; set; } /// /// The partial request match result. /// public LogRequestMatchModel PartialRequestMatchResult { get; set; } } }