Skip to content

Commit

Permalink
Do the tests work?
Browse files Browse the repository at this point in the history
  • Loading branch information
johnml1135 committed Dec 10, 2024
1 parent 84a9c72 commit cc5a66e
Show file tree
Hide file tree
Showing 4 changed files with 1,732 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/Serval/src/Serval.Client/Client.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10704,6 +10704,9 @@ public partial class WordAlignmentBuild
[Newtonsoft.Json.JsonProperty("options", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public object? Options { get; set; } = default!;

[Newtonsoft.Json.JsonProperty("deploymentVersion", Required = Newtonsoft.Json.Required.Default, NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore)]
public string? DeploymentVersion { get; set; } = default!;

}

[System.CodeDom.Compiler.GeneratedCode("NJsonSchema", "14.1.0.0 (NJsonSchema v11.0.2.0 (Newtonsoft.Json v13.0.0.0))")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ public record WordAlignmentBuildDto
/// }
/// </example>
public object? Options { get; init; }
public string? DeploymentVersion { get; init; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,8 @@ private WordAlignmentBuildDto Map(Build source)
QueueDepth = source.QueueDepth,
State = source.State,
DateFinished = source.DateFinished,
Options = source.Options
Options = source.Options,
DeploymentVersion = source.DeploymentVersion
};
}

Expand Down
Loading

0 comments on commit cc5a66e

Please sign in to comment.