using System; namespace WireMock.Admin.Requests; /// /// Request Log Model /// public class LogEntryModel { /// /// The unique identifier. /// public Guid Guid { get; set; } /// /// The request. /// public required LogRequestModel Request { get; init; } /// /// The response. /// public required LogResponseModel Response { get; init; } /// /// 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; } }