mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 22:33:35 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
56 lines
1.3 KiB
C#
56 lines
1.3 KiB
C#
// Copyright © WireMock.Net
|
|
|
|
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 required LogRequestModel Request { get; init; }
|
|
|
|
/// <summary>
|
|
/// The response.
|
|
/// </summary>
|
|
public required LogResponseModel Response { get; init; }
|
|
|
|
/// <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; }
|
|
} |