You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Atc.Rest.ApiGenerator.Framework/ContentGenerators/Server/ContentGeneratorServerConfigureSwaggerDocOptions.cs
/// <item><description><b>DateTime</b> → ISO 8601 round-trip <c>"O"</c> (e.g., <c>2025-09-03T12:34:56.7890123+00:00</c>).</description></item>
14
+
/// <item><description><b>Double/Float</b> → standard numeric format <c>"N"</c> using en-US (group separators + decimals; e.g., <c>1,234.00</c>).</description></item>
15
+
/// <item><description><b>Long/Integer</b> → general numeric format <c>"G"</c> using en-US (no group separators, no decimals; e.g., <c>1234</c>).</description></item>
16
+
/// <item><description><b>Null</b> → the literal <c>"null"</c>.</description></item>
17
+
/// <item><description><b>String/Password</b> → empty → <c>"string.Empty"</c>; otherwise the raw value (unquoted).</description></item>
18
+
/// </list>
19
+
/// <para>
20
+
/// Culture is fixed to <see cref="GlobalizationConstants.EnglishCultureInfo"/> (en-US) to ensure consistent output across environments.
21
+
/// </para>
22
+
/// </remarks>
23
+
/// <param name="openApiAny">The <see cref="IOpenApiAny"/> value to format (e.g., <see cref="OpenApiBoolean"/>, <see cref="OpenApiDate"/>, <see cref="OpenApiDateTime"/>, <see cref="OpenApiDouble"/>, <see cref="OpenApiFloat"/>, <see cref="OpenApiLong"/>, <see cref="OpenApiInteger"/>, <see cref="OpenApiNull"/>, <see cref="OpenApiPassword"/>, <see cref="OpenApiString"/>).</param>
24
+
/// <returns>
25
+
/// The formatted string representation of <paramref name="openApiAny"/>; <see langword="null"/> if <paramref name="openApiAny"/> is <see langword="null"/>.
26
+
/// </returns>
27
+
/// <exception cref="NotImplementedException">
28
+
/// Thrown when <paramref name="openApiAny"/> is an <see cref="IOpenApiAny"/> subtype not handled by this method.
Copy file name to clipboardExpand all lines: test/Atc.Rest.ApiGenerator.CLI.Tests/Scenarios/Monta/VerifyClient/WCEM/src/Monta.ApiClient.Generated/Contracts/_Shared/Pricing.verified.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ public class Pricing
57
57
/// <summary>
58
58
/// Used by Spot Price. It will multiply the fallback price by this percentage.
0 commit comments