/// <summary> /// Initializes a new instance of the <see cref="TestOccurrenceDto" /> class. /// </summary> /// <param name="id">id.</param> /// <param name="name">name.</param> /// <param name="status">status.</param> /// <param name="ignored">ignored.</param> /// <param name="duration">duration.</param> /// <param name="runOrder">runOrder.</param> /// <param name="newFailure">newFailure.</param> /// <param name="muted">muted.</param> /// <param name="currentlyMuted">currentlyMuted.</param> /// <param name="currentlyInvestigated">currentlyInvestigated.</param> /// <param name="href">href.</param> /// <param name="ignoreDetails">ignoreDetails.</param> /// <param name="details">details.</param> /// <param name="test">test.</param> /// <param name="mute">mute.</param> /// <param name="build">build.</param> /// <param name="firstFailed">firstFailed.</param> /// <param name="nextFixed">nextFixed.</param> /// <param name="invocations">invocations.</param> /// <param name="metadata">metadata.</param> /// <param name="logAnchor">logAnchor.</param> public TestOccurrenceDto(string id = default(string), string name = default(string), string status = default(string), bool?ignored = default(bool?), int?duration = default(int?), string runOrder = default(string), bool?newFailure = default(bool?), bool?muted = default(bool?), bool?currentlyMuted = default(bool?), bool?currentlyInvestigated = default(bool?), string href = default(string), string ignoreDetails = default(string), string details = default(string), TestDto test = default(TestDto), MuteDto mute = default(MuteDto), BuildDto build = default(BuildDto), TestOccurrenceDto firstFailed = default(TestOccurrenceDto), TestOccurrenceDto nextFixed = default(TestOccurrenceDto), TestOccurrencesDto invocations = default(TestOccurrencesDto), TestRunMetadataDto metadata = default(TestRunMetadataDto), string logAnchor = default(string)) { this.Id = id; this.Name = name; this.Status = status; this.Ignored = ignored; this.Duration = duration; this.RunOrder = runOrder; this.NewFailure = newFailure; this.Muted = muted; this.CurrentlyMuted = currentlyMuted; this.CurrentlyInvestigated = currentlyInvestigated; this.Href = href; this.IgnoreDetails = ignoreDetails; this.Details = details; this.Test = test; this.Mute = mute; this.Build = build; this.FirstFailed = firstFailed; this.NextFixed = nextFixed; this.Invocations = invocations; this.Metadata = metadata; this.LogAnchor = logAnchor; }
/// <summary> /// Initializes a new instance of the <see cref="ProblemOccurrenceDto" /> class. /// </summary> /// <param name="id">id.</param> /// <param name="type">type.</param> /// <param name="identity">identity.</param> /// <param name="href">href.</param> /// <param name="muted">muted.</param> /// <param name="currentlyInvestigated">currentlyInvestigated.</param> /// <param name="currentlyMuted">currentlyMuted.</param> /// <param name="logAnchor">logAnchor.</param> /// <param name="newFailure">newFailure.</param> /// <param name="details">details.</param> /// <param name="additionalData">additionalData.</param> /// <param name="problem">problem.</param> /// <param name="mute">mute.</param> /// <param name="build">build.</param> public ProblemOccurrenceDto(string id = default(string), string type = default(string), string identity = default(string), string href = default(string), bool?muted = default(bool?), bool?currentlyInvestigated = default(bool?), bool?currentlyMuted = default(bool?), string logAnchor = default(string), bool?newFailure = default(bool?), string details = default(string), string additionalData = default(string), ProblemDto problem = default(ProblemDto), MuteDto mute = default(MuteDto), BuildDto build = default(BuildDto)) { this.Id = id; this.Type = type; this.Identity = identity; this.Href = href; this.Muted = muted; this.CurrentlyInvestigated = currentlyInvestigated; this.CurrentlyMuted = currentlyMuted; this.LogAnchor = logAnchor; this.NewFailure = newFailure; this.Details = details; this.AdditionalData = additionalData; this.Problem = problem; this.Mute = mute; this.Build = build; }