// Copyright © WireMock.Net namespace WireMock.Admin.Mappings; /// /// Status /// [FluentBuilder.AutoGenerateBuilder] public class StatusModel { /// /// The optional guid. /// public Guid? Guid { get; set; } /// /// The status. /// public string? Status { get; set; } /// /// The error message. /// public string? Error { get; set; } /// /// Returns a string that represents the current status model, including its unique identifier, status, and error information. /// /// A string containing the values of the Guid, Status, and Error properties formatted for display. public override string ToString() { return $"StatusModel [Guid={Guid}, Status={Status}, Error={Error}]"; } }