diff --git a/RELEASES.md b/RELEASES.md
index 313d30c7b..7e0bbf25b 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -976,4 +976,21 @@ Based on:
- [python v2.0.4] python-client-sdk
- [ruby v1.36.2] ruby-client-sdk
### Releases
-- [Go v1.39.4] https://github.com/speakeasy-api/openapi-generation-tests/releases/tag/go-client-sdk/v1.39.4 - go-client-sdk
\ No newline at end of file
+- [Go v1.39.4] https://github.com/speakeasy-api/openapi-generation-tests/releases/tag/go-client-sdk/v1.39.4 - go-client-sdk
+
+## 2023-11-07 00:11:56
+### Changes
+Based on:
+- OpenAPI Doc 0.1.0
+- Speakeasy CLI 1.114.1 (2.181.1) https://github.com/speakeasy-api/speakeasy
+### Generated
+- [typescript v2.0.0] typescript-client-sdk
+- [csharp v0.2.0] csharp-client-sdk
+- [go v2.0.0] go-client-sdk
+- [java v2.0.0] java-client-sdk
+- [php v2.0.0] php-client-sdk
+- [python v3.0.0] python-client-sdk
+- [ruby v2.0.0] ruby-client-sdk
+- [swift v0.2.0] swift-client-sdk
+### Releases
+- [Go v2.0.0] https://github.com/speakeasy-api/openapi-generation-tests/releases/tag/go-client-sdk/v2.0.0 - go-client-sdk
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi.sln b/csharp-client-sdk/Openapi.sln
new file mode 100755
index 000000000..caa656da0
--- /dev/null
+++ b/csharp-client-sdk/Openapi.sln
@@ -0,0 +1,18 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Openapi", "Openapi\Openapi.csproj", "{F0CE92B5-F3CC-45A2-AA83-118C38724EB1}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests/Tests.csproj", "{94ECA098-99ED-4231-B020-71F1A2DA4C11}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {F0CE92B5-F3CC-45A2-AA83-118C38724EB1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {F0CE92B5-F3CC-45A2-AA83-118C38724EB1}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {F0CE92B5-F3CC-45A2-AA83-118C38724EB1}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {F0CE92B5-F3CC-45A2-AA83-118C38724EB1}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+EndGlobal
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Auth.cs b/csharp-client-sdk/Openapi/Auth.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Auth.cs
rename to csharp-client-sdk/Openapi/Auth.cs
index f36ea34ab..774a91196 100755
--- a/csharp-client-sdk/SDK/Auth.cs
+++ b/csharp-client-sdk/Openapi/Auth.cs
@@ -8,11 +8,11 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
using Newtonsoft.Json;
- using SDK.Models.Operations;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Utils;
using System.Net.Http.Headers;
using System.Net.Http;
using System.Threading.Tasks;
@@ -21,7 +21,7 @@ namespace SDK
///
/// Endpoints for testing authentication.
///
- public interface IAuthSDK
+ public interface IAuth
{
Task ApiKeyAuthAsync(ApiKeyAuthSecurity security);
Task ApiKeyAuthGlobalAsync();
@@ -36,19 +36,19 @@ public interface IAuthSDK
///
/// Endpoints for testing authentication.
///
- public class AuthSDK: IAuthSDK
+ public class Auth: IAuth
{
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public AuthSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public Auth(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
diff --git a/csharp-client-sdk/SDK/AuthNew.cs b/csharp-client-sdk/Openapi/AuthNew.cs
similarity index 98%
rename from csharp-client-sdk/SDK/AuthNew.cs
rename to csharp-client-sdk/Openapi/AuthNew.cs
index 260d2c7a2..7c94800c5 100755
--- a/csharp-client-sdk/SDK/AuthNew.cs
+++ b/csharp-client-sdk/Openapi/AuthNew.cs
@@ -8,11 +8,11 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
- using SDK.Models.Operations;
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
using System.Collections.Generic;
using System.Net.Http.Headers;
using System.Net.Http;
@@ -22,7 +22,7 @@ namespace SDK
///
/// Endpoints for testing authentication.
///
- public interface IAuthNewSDK
+ public interface IAuthNew
{
Task ApiKeyAuthGlobalNewAsync(AuthServiceRequestBody request, string? serverUrl = null);
Task AuthGlobalAsync(AuthServiceRequestBody request, string? serverUrl = null);
@@ -40,7 +40,7 @@ public interface IAuthNewSDK
///
/// Endpoints for testing authentication.
///
- public class AuthNewSDK: IAuthNewSDK
+ public class AuthNew: IAuthNew
{
/**
* ApiKeyAuthGlobalNewSERVERS contains the list of server urls available to the SDK.
@@ -121,15 +121,15 @@ public class AuthNewSDK: IAuthNewSDK
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public AuthNewSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public AuthNew(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
diff --git a/csharp-client-sdk/SDK/Documentation.cs b/csharp-client-sdk/Openapi/Documentation.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Documentation.cs
rename to csharp-client-sdk/Openapi/Documentation.cs
index 43d17a3de..ff5502683 100755
--- a/csharp-client-sdk/SDK/Documentation.cs
+++ b/csharp-client-sdk/Openapi/Documentation.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
- using SDK.Models.Operations;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Utils;
using System.Net.Http.Headers;
using System.Net.Http;
using System.Threading.Tasks;
@@ -20,7 +20,7 @@ namespace SDK
///
/// Testing for documentation extensions and tooling.
///
- public interface IDocumentationSDK
+ public interface IDocumentation
{
///
@@ -32,19 +32,19 @@ public interface IDocumentationSDK
///
/// Testing for documentation extensions and tooling.
///
- public class DocumentationSDK: IDocumentationSDK
+ public class Documentation: IDocumentation
{
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public DocumentationSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public Documentation(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
diff --git a/csharp-client-sdk/SDK/Errors.cs b/csharp-client-sdk/Openapi/Errors.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Errors.cs
rename to csharp-client-sdk/Openapi/Errors.cs
index 0bd72c4df..f8bf70f3c 100755
--- a/csharp-client-sdk/SDK/Errors.cs
+++ b/csharp-client-sdk/Openapi/Errors.cs
@@ -8,12 +8,12 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
using Newtonsoft.Json;
- using SDK.Models.Operations;
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
using System.Collections.Generic;
using System.Net.Http.Headers;
using System.Net.Http;
@@ -23,7 +23,7 @@ namespace SDK
///
/// Endpoints for testing error responses.
///
- public interface IErrorsSDK
+ public interface IErrors
{
Task ConnectionErrorGetAsync(string? serverUrl = null);
Task StatusGetErrorAsync(long statusCode);
@@ -33,7 +33,7 @@ public interface IErrorsSDK
///
/// Endpoints for testing error responses.
///
- public class ErrorsSDK: IErrorsSDK
+ public class Errors: IErrors
{
/**
* ConnectionErrorGetSERVERS contains the list of server urls available to the SDK.
@@ -51,15 +51,15 @@ public class ErrorsSDK: IErrorsSDK
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public ErrorsSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public Errors(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
@@ -199,7 +199,7 @@ public async Task StatusGetXSpeakeasyErrorsAs
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.StatusGetXSpeakeasyErrors501ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
diff --git a/csharp-client-sdk/SDK/First.cs b/csharp-client-sdk/Openapi/First.cs
similarity index 84%
rename from csharp-client-sdk/SDK/First.cs
rename to csharp-client-sdk/Openapi/First.cs
index 099479a40..062d51e7b 100755
--- a/csharp-client-sdk/SDK/First.cs
+++ b/csharp-client-sdk/Openapi/First.cs
@@ -8,32 +8,32 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
- using SDK.Models.Operations;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Utils;
using System.Net.Http;
using System.Threading.Tasks;
using System;
- public interface IFirstSDK
+ public interface IFirst
{
Task GetAsync();
}
- public class FirstSDK: IFirstSDK
+ public class First: IFirst
{
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public FirstSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public First(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
diff --git a/csharp-client-sdk/SDK/Flattening.cs b/csharp-client-sdk/Openapi/Flattening.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Flattening.cs
rename to csharp-client-sdk/Openapi/Flattening.cs
index 8dd7fe905..6cd82eadd 100755
--- a/csharp-client-sdk/SDK/Flattening.cs
+++ b/csharp-client-sdk/Openapi/Flattening.cs
@@ -8,12 +8,12 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
using Newtonsoft.Json;
- using SDK.Models.Operations;
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
using System.Net.Http.Headers;
using System.Net.Http;
using System.Threading.Tasks;
@@ -22,7 +22,7 @@ namespace SDK
///
/// Endpoints for testing flattening through request body and parameter combinations.
///
- public interface IFlatteningSDK
+ public interface IFlattening
{
Task ComponentBodyAndParamConflictAsync(SimpleObject simpleObject, string str);
Task ComponentBodyAndParamNoConflictAsync(string paramStr, SimpleObject simpleObject);
@@ -34,19 +34,19 @@ public interface IFlatteningSDK
///
/// Endpoints for testing flattening through request body and parameter combinations.
///
- public class FlatteningSDK: IFlatteningSDK
+ public class Flattening: IFlattening
{
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public FlatteningSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public Flattening(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
diff --git a/csharp-client-sdk/SDK/Generation.cs b/csharp-client-sdk/Openapi/Generation.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Generation.cs
rename to csharp-client-sdk/Openapi/Generation.cs
index e25eb8446..c01698bd8 100755
--- a/csharp-client-sdk/SDK/Generation.cs
+++ b/csharp-client-sdk/Openapi/Generation.cs
@@ -8,13 +8,13 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
using Newtonsoft.Json;
using NodaTime;
- using SDK.Models.Operations;
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
using System.Collections.Generic;
using System.Net.Http.Headers;
using System.Net.Http;
@@ -25,7 +25,7 @@ namespace SDK
///
/// Endpoints for purely testing valid generation behavior.
///
- public interface IGenerationSDK
+ public interface IGeneration
{
Task AnchorTypesGetAsync();
Task ArrayCircularReferenceGetAsync();
@@ -45,11 +45,11 @@ public interface IGenerationSDK
Task EmptyResponseObjectWithCommentGetAsync();
Task GlobalNameOverriddenAsync();
Task IgnoredGenerationGetAsync();
- Task IgnoresPostAsync(IgnoresPostApplicationJSON requestBody, string? testParam = null);
- Task NameOverrideAsync(NameOverrideGetEnumNameOverride testEnumQueryParam, string testQueryParam);
+ Task IgnoresPostAsync(IgnoresPostRequestBody requestBody, string? testParam = null);
+ Task NameOverrideAsync(EnumNameOverride testEnumQueryParam, string testQueryParam);
Task ObjectCircularReferenceGetAsync();
Task OneOfCircularReferenceGetAsync();
- Task TypedParameterGenerationGetAsync(BigInteger? bigint = null, LocalDate? date = null, decimal? decimalP = null, TypedParameterGenerationGetObj? obj = null);
+ Task TypedParameterGenerationGetAsync(BigInteger? bigint = null, LocalDate? date = null, decimal? decimalP = null, Obj? obj = null);
///
/// An operation used for testing usage examples
@@ -66,19 +66,19 @@ public interface IGenerationSDK
///
/// Endpoints for purely testing valid generation behavior.
///
- public class GenerationSDK: IGenerationSDK
+ public class Generation: IGeneration
{
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public GenerationSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public Generation(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
@@ -118,7 +118,7 @@ public async Task AnchorTypesGetAsync()
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.TypeFromAnchor = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.TypeFromAnchor = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -403,7 +403,7 @@ public async Task DeprecatedObjectInSchemaG
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.DeprecatedObjectInSchemaGet200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -606,7 +606,7 @@ public async Task GlobalNameOverriddenAsync()
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.GetGlobalNameOverride200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -646,7 +646,7 @@ public async Task IgnoredGenerationGetAsync()
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.IgnoredGenerationGet200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -655,7 +655,7 @@ public async Task IgnoredGenerationGetAsync()
}
- public async Task IgnoresPostAsync(IgnoresPostApplicationJSON requestBody, string? testParam = null)
+ public async Task IgnoresPostAsync(IgnoresPostRequestBody requestBody, string? testParam = null)
{
var request = new IgnoresPostRequest()
{
@@ -709,7 +709,7 @@ public async Task IgnoresPostAsync(IgnoresPostApplicationJS
}
- public async Task NameOverrideAsync(NameOverrideGetEnumNameOverride testEnumQueryParam, string testQueryParam)
+ public async Task NameOverrideAsync(EnumNameOverride testEnumQueryParam, string testQueryParam)
{
var request = new NameOverrideGetRequest()
{
@@ -745,7 +745,7 @@ public async Task NameOverrideAsync(NameOverrideGetEnum
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.OverriddenResponse = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.OverriddenResponse = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -834,7 +834,7 @@ public async Task OneOfCircularReferenceGetAs
}
- public async Task TypedParameterGenerationGetAsync(BigInteger? bigint = null, LocalDate? date = null, decimal? decimalP = null, TypedParameterGenerationGetObj? obj = null)
+ public async Task TypedParameterGenerationGetAsync(BigInteger? bigint = null, LocalDate? date = null, decimal? decimalP = null, Obj? obj = null)
{
var request = new TypedParameterGenerationGetRequest()
{
@@ -913,7 +913,7 @@ public async Task UsageExamplePostAsync(UsageExamplePo
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.UsageExamplePost200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
diff --git a/csharp-client-sdk/SDK/Globals.cs b/csharp-client-sdk/Openapi/Globals.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Globals.cs
rename to csharp-client-sdk/Openapi/Globals.cs
index 9fa5eca10..880b1930a 100755
--- a/csharp-client-sdk/SDK/Globals.cs
+++ b/csharp-client-sdk/Openapi/Globals.cs
@@ -8,11 +8,11 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
using Newtonsoft.Json;
- using SDK.Models.Operations;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Utils;
using System.Net.Http.Headers;
using System.Net.Http;
using System.Threading.Tasks;
@@ -21,7 +21,7 @@ namespace SDK
///
/// Endpoints for testing global parameters.
///
- public interface IGlobalsSDK
+ public interface IGlobals
{
Task GlobalPathParameterGetAsync(long? globalPathParam = null);
Task GlobalsQueryParameterGetAsync(string? globalQueryParam = null);
@@ -30,19 +30,19 @@ public interface IGlobalsSDK
///
/// Endpoints for testing global parameters.
///
- public class GlobalsSDK: IGlobalsSDK
+ public class Globals: IGlobals
{
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public GlobalsSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public Globals(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
diff --git a/csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.cs b/csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.cs
index ed76c8315..40f89ff50 100755
--- a/csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackRequestBody.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Callbacks
+namespace Openapi.Models.Callbacks
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.cs b/csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.cs
rename to csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.cs
index f41f8c372..fad980439 100755
--- a/csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetNotIgnoredCallbackResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Callbacks
+namespace Openapi.Models.Callbacks
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.cs b/csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.cs
index 9bd600db6..d76f72e1e 100755
--- a/csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationRequestBody.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Callbacks
+namespace Openapi.Models.Callbacks
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.cs b/csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.cs
rename to csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.cs
index e3c46ffa1..12dba8df6 100755
--- a/csharp-client-sdk/SDK/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Callbacks/IgnoredGenerationGetSingledIgnoredCallbackOperationResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Callbacks
+namespace Openapi.Models.Callbacks
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/AnchorTypesGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/AnchorTypesGetResponse.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/AnchorTypesGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/AnchorTypesGetResponse.cs
index 9cceb8aff..c1a572362 100755
--- a/csharp-client-sdk/SDK/Models/Operations/AnchorTypesGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/AnchorTypesGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class AnchorTypesGetResponse
///
/// A successful response that contains the simpleObject sent in the request body
///
- public TypeFromAnchor? TypeFromAnchor { get; set; }
+ public AnchorTypesGetTypeFromAnchor? TypeFromAnchor { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/AnchorTypesGetTypeFromAnchor.cs b/csharp-client-sdk/Openapi/Models/Operations/AnchorTypesGetTypeFromAnchor.cs
new file mode 100755
index 000000000..f27218250
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/AnchorTypesGetTypeFromAnchor.cs
@@ -0,0 +1,30 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+
+ ///
+ /// A successful response that contains the simpleObject sent in the request body
+ ///
+ public class AnchorTypesGetTypeFromAnchor
+ {
+
+ ///
+ /// A simple object that uses all our supported primitive types and enums and has optional properties.
+ ///
+ /// https://docs.speakeasyapi.dev} - A link to the external docs.
+ ///
+ [JsonProperty("json")]
+ public SimpleObject? Json { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthGlobalNewResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthGlobalNewResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthGlobalNewResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthGlobalNewResponse.cs
index 8cd078107..570f4c3a4 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthGlobalNewResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthGlobalNewResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthGlobalResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthGlobalResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthGlobalResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthGlobalResponse.cs
index 9363d87a1..eacf3c54a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthGlobalResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthGlobalResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthGlobalToken.cs b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthGlobalToken.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthGlobalToken.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthGlobalToken.cs
index 7a690da32..c1671cca2 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthGlobalToken.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthGlobalToken.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthResponse.cs
index 679fe634d..51ac4da40 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthSecurity.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthSecurity.cs
index a6e061f0b..8640a76b1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class ApiKeyAuthSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthToken.cs b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthToken.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthToken.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthToken.cs
index 7ebbaedea..91084952e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ApiKeyAuthToken.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ApiKeyAuthToken.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/Args.cs b/csharp-client-sdk/Openapi/Models/Operations/Args.cs
new file mode 100755
index 000000000..396683841
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/Args.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class Args
+ {
+
+ [JsonProperty("globalQueryParam")]
+ public string GlobalQueryParam { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/ArrayCircularReferenceGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ArrayCircularReferenceGetResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/ArrayCircularReferenceGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ArrayCircularReferenceGetResponse.cs
index 2d85b70be..70e5b34af 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ArrayCircularReferenceGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ArrayCircularReferenceGetResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/AuthGlobalResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/AuthGlobalResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/AuthGlobalResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/AuthGlobalResponse.cs
index a40f6971f..0d55fc0a8 100755
--- a/csharp-client-sdk/SDK/Models/Operations/AuthGlobalResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/AuthGlobalResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/BasicAuthNewResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthNewResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/BasicAuthNewResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/BasicAuthNewResponse.cs
index 620e3bd30..64dd551c0 100755
--- a/csharp-client-sdk/SDK/Models/Operations/BasicAuthNewResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthNewResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/BasicAuthNewSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthNewSecurity.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/BasicAuthNewSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/BasicAuthNewSecurity.cs
index ec5986cd3..d3d6e0684 100755
--- a/csharp-client-sdk/SDK/Models/Operations/BasicAuthNewSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthNewSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class BasicAuthNewSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/BasicAuthRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/BasicAuthRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/BasicAuthRequest.cs
index 9594982bf..a0e762e6f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/BasicAuthRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class BasicAuthRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/BasicAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/BasicAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/BasicAuthResponse.cs
index a88a4540d..752642e4d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/BasicAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/BasicAuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthSecurity.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/BasicAuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/BasicAuthSecurity.cs
index 3ec2e5399..a3e9d5a4d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/BasicAuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class BasicAuthSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/BasicAuthUser.cs b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthUser.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/BasicAuthUser.cs
rename to csharp-client-sdk/Openapi/Models/Operations/BasicAuthUser.cs
index c63f9fc97..9b0a3fb20 100755
--- a/csharp-client-sdk/SDK/Models/Operations/BasicAuthUser.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/BasicAuthUser.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/BearerAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/BearerAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/BearerAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/BearerAuthResponse.cs
index 314742ddb..1231ccac1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/BearerAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/BearerAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/BearerAuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/BearerAuthSecurity.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/BearerAuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/BearerAuthSecurity.cs
index 394a73ebe..f5e50fc1b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/BearerAuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/BearerAuthSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class BearerAuthSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/BearerAuthToken.cs b/csharp-client-sdk/Openapi/Models/Operations/BearerAuthToken.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/BearerAuthToken.cs
rename to csharp-client-sdk/Openapi/Models/Operations/BearerAuthToken.cs
index 19f0479da..2d910c01c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/BearerAuthToken.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/BearerAuthToken.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/CircularReferenceGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/CircularReferenceGetResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/CircularReferenceGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/CircularReferenceGetResponse.cs
index ad4b4b0e2..387d4f49e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/CircularReferenceGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/CircularReferenceGetResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamConflictRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamConflictRequest.cs
similarity index 88%
rename from csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamConflictRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamConflictRequest.cs
index f401392ac..4ff94458f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamConflictRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamConflictRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class ComponentBodyAndParamConflictRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamConflictRes.cs b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamConflictRes.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamConflictRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamConflictRes.cs
index 897a2d499..2212d89f3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamConflictRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamConflictRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
///
diff --git a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamConflictResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamConflictResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamConflictResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamConflictResponse.cs
index 6fa0cf26a..ac19d9556 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamConflictResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamConflictResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamNoConflictRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamNoConflictRequest.cs
similarity index 88%
rename from csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamNoConflictRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamNoConflictRequest.cs
index 75450c4b2..ff02becd2 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamNoConflictRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamNoConflictRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class ComponentBodyAndParamNoConflictRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamNoConflictRes.cs b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamNoConflictRes.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamNoConflictRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamNoConflictRes.cs
index 54b284611..2c6bf2230 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamNoConflictRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamNoConflictRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
///
diff --git a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamNoConflictResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamNoConflictResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamNoConflictResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamNoConflictResponse.cs
index 5e811bb3c..88752bfe6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ComponentBodyAndParamNoConflictResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ComponentBodyAndParamNoConflictResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ConflictingParamsRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/ConflictingParamsRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/ConflictingParamsRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ConflictingParamsRequest.cs
index 58205d637..781ecad74 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ConflictingParamsRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ConflictingParamsRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class ConflictingParamsRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/ConflictingParamsRes.cs b/csharp-client-sdk/Openapi/Models/Operations/ConflictingParamsRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/ConflictingParamsRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ConflictingParamsRes.cs
index 89e80acd0..447943538 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ConflictingParamsRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ConflictingParamsRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ConflictingParamsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ConflictingParamsResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ConflictingParamsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ConflictingParamsResponse.cs
index fb3241717..2bee593fc 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ConflictingParamsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ConflictingParamsResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ConnectionErrorGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ConnectionErrorGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ConnectionErrorGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ConnectionErrorGetResponse.cs
index 6f11a8d47..fbe4f48d9 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ConnectionErrorGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ConnectionErrorGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/CreateFileFile.cs b/csharp-client-sdk/Openapi/Models/Operations/CreateFileFile.cs
new file mode 100755
index 000000000..6eb17b092
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/CreateFileFile.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class CreateFileFile
+ {
+
+ [SpeakeasyMetadata("multipartForm:content")]
+ public byte[] Content { get; set; } = default!;
+
+ [SpeakeasyMetadata("multipartForm:name=file")]
+ public string FileName { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/CreateFileRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/CreateFileRequestBody.cs
similarity index 81%
rename from csharp-client-sdk/SDK/Models/Operations/CreateFileRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Operations/CreateFileRequestBody.cs
index 74f64a5df..a0a12b9dd 100755
--- a/csharp-client-sdk/SDK/Models/Operations/CreateFileRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/CreateFileRequestBody.cs
@@ -8,14 +8,14 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class CreateFileRequestBody
{
[SpeakeasyMetadata("multipartForm:file")]
- public CreateFileRequestBodyFile? File { get; set; }
+ public CreateFileFile? File { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/CreateFileResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/CreateFileResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/CreateFileResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/CreateFileResponse.cs
index 53347fd31..604e28099 100755
--- a/csharp-client-sdk/SDK/Models/Operations/CreateFileResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/CreateFileResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/CreateResourceResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/CreateResourceResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/CreateResourceResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/CreateResourceResponse.cs
index 76cfe42e4..9493f6325 100755
--- a/csharp-client-sdk/SDK/Models/Operations/CreateResourceResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/CreateResourceResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DateParamWithDefaultRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/DateParamWithDefaultRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/DateParamWithDefaultRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DateParamWithDefaultRequest.cs
index fb0f9be8f..43c86f0c2 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DateParamWithDefaultRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DateParamWithDefaultRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using NodaTime;
- using SDK.Utils;
+ using Openapi.Utils;
public class DateParamWithDefaultRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/DateParamWithDefaultResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DateParamWithDefaultResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/DateParamWithDefaultResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DateParamWithDefaultResponse.cs
index 42b2b674f..a0482a5d2 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DateParamWithDefaultResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DateParamWithDefaultResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DateTimeParamWithDefaultRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/DateTimeParamWithDefaultRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/DateTimeParamWithDefaultRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DateTimeParamWithDefaultRequest.cs
index 768ab5a88..d41f803c5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DateTimeParamWithDefaultRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DateTimeParamWithDefaultRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
using System;
public class DateTimeParamWithDefaultRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/DateTimeParamWithDefaultResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DateTimeParamWithDefaultResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/DateTimeParamWithDefaultResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DateTimeParamWithDefaultResponse.cs
index 954739177..55b85538f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DateTimeParamWithDefaultResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DateTimeParamWithDefaultResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DecimalParamWithDefaultRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/DecimalParamWithDefaultRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/DecimalParamWithDefaultRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DecimalParamWithDefaultRequest.cs
index 95631933a..128114f4a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DecimalParamWithDefaultRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DecimalParamWithDefaultRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class DecimalParamWithDefaultRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/DecimalParamWithDefaultResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DecimalParamWithDefaultResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/DecimalParamWithDefaultResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DecimalParamWithDefaultResponse.cs
index c4c0ff1f6..ca9613f68 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DecimalParamWithDefaultResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DecimalParamWithDefaultResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsMapRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsMapRequest.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsMapRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsMapRequest.cs
index b7e492392..681f6935a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsMapRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsMapRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
using System.Collections.Generic;
public class DeepObjectQueryParamsMapRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsMapRes.cs b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsMapRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsMapRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsMapRes.cs
index 0b4f5cd3e..5abe6ff0b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsMapRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsMapRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsMapResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsMapResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsMapResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsMapResponse.cs
index 4d56cf104..5c6cdaeea 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsMapResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsMapResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectArgs.cs
new file mode 100755
index 000000000..8a53b03f8
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectArgs.cs
@@ -0,0 +1,76 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+
+ public class DeepObjectQueryParamsObjectArgs
+ {
+
+ [JsonProperty("objArrParam[arr]")]
+ public List ObjArrParamArr { get; set; } = default!;
+
+ [JsonProperty("objParam[any]")]
+ public string ObjParamAny { get; set; } = default!;
+
+ [JsonProperty("objParam[bigintStr]")]
+ public string? ObjParamBigintStr { get; set; }
+
+ [JsonProperty("objParam[bigint]")]
+ public string? ObjParamBigint { get; set; }
+
+ [JsonProperty("objParam[boolOpt]")]
+ public string ObjParamBoolOpt { get; set; } = default!;
+
+ [JsonProperty("objParam[bool]")]
+ public string ObjParamBool { get; set; } = default!;
+
+ [JsonProperty("objParam[dateTime]")]
+ public string ObjParamDateTime { get; set; } = default!;
+
+ [JsonProperty("objParam[date]")]
+ public string ObjParamDate { get; set; } = default!;
+
+ [JsonProperty("objParam[decimalStr]")]
+ public string? ObjParamDecimalStr { get; set; }
+
+ [JsonProperty("objParam[decimal]")]
+ public string? ObjParamDecimal { get; set; }
+
+ [JsonProperty("objParam[enum]")]
+ public string ObjParamEnum { get; set; } = default!;
+
+ [JsonProperty("objParam[float32]")]
+ public string ObjParamFloat32 { get; set; } = default!;
+
+ [JsonProperty("objParam[int32Enum]")]
+ public string ObjParamInt32Enum { get; set; } = default!;
+
+ [JsonProperty("objParam[int32]")]
+ public string ObjParamInt32 { get; set; } = default!;
+
+ [JsonProperty("objParam[intEnum]")]
+ public string ObjParamIntEnum { get; set; } = default!;
+
+ [JsonProperty("objParam[int]")]
+ public string ObjParamInt { get; set; } = default!;
+
+ [JsonProperty("objParam[num]")]
+ public string ObjParamNum { get; set; } = default!;
+
+ [JsonProperty("objParam[strOpt]")]
+ public string ObjParamStrOpt { get; set; } = default!;
+
+ [JsonProperty("objParam[str]")]
+ public string ObjParamStr { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectRequest.cs
similarity index 84%
rename from csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectRequest.cs
index 05117cee5..f3ac61078 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class DeepObjectQueryParamsObjectRequest
{
@@ -23,6 +23,6 @@ public class DeepObjectQueryParamsObjectRequest
public SimpleObject ObjParam { get; set; } = default!;
[SpeakeasyMetadata("queryParam:style=deepObject,explode=true,name=objArrParam")]
- public DeepObjectQueryParamsObjectObjArrParam? ObjArrParam { get; set; }
+ public ObjArrParam? ObjArrParam { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectRes.cs b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectRes.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectRes.cs
index 57c3312bf..ba31c6234 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,7 +19,7 @@ public class DeepObjectQueryParamsObjectRes
{
[JsonProperty("args")]
- public DeepObjectQueryParamsObjectResArgs Args { get; set; } = default!;
+ public DeepObjectQueryParamsObjectArgs Args { get; set; } = default!;
[JsonProperty("url")]
public string Url { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectResponse.cs
index f285910e7..523841a9d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeepObjectQueryParamsObjectResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeepObjectQueryParamsObjectResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeleteResourceRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/DeleteResourceRequest.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/DeleteResourceRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeleteResourceRequest.cs
index f5a998ee0..dde51d64b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeleteResourceRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeleteResourceRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class DeleteResourceRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeleteResourceResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DeleteResourceResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/DeleteResourceResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeleteResourceResponse.cs
index af2064d72..9a33486ed 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeleteResourceResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeleteResourceResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeprecatedFieldInSchemaPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedFieldInSchemaPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/DeprecatedFieldInSchemaPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeprecatedFieldInSchemaPostResponse.cs
index c21f0390a..9f5bb52e5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeprecatedFieldInSchemaPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedFieldInSchemaPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeprecatedObjectInSchemaGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedObjectInSchemaGetResponse.cs
similarity index 87%
rename from csharp-client-sdk/SDK/Models/Operations/DeprecatedObjectInSchemaGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeprecatedObjectInSchemaGetResponse.cs
index 121cf2800..ed68410ba 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeprecatedObjectInSchemaGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedObjectInSchemaGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class DeprecatedObjectInSchemaGetResponse
///
/// A successful response that contains a deprecatedObject sent in the request body
///
- public DeprecatedObjectInSchemaGet200ApplicationJSON? DeprecatedObjectInSchemaGet200ApplicationJSONObject { get; set; }
+ public DeprecatedObjectInSchemaGetResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/DeprecatedObjectInSchemaGetResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedObjectInSchemaGetResponseBody.cs
new file mode 100755
index 000000000..828320a02
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedObjectInSchemaGetResponseBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+ using System;
+
+ ///
+ /// A successful response that contains a deprecatedObject sent in the request body
+ ///
+ public class DeprecatedObjectInSchemaGetResponseBody
+ {
+
+ [Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
+ [JsonProperty("json")]
+ public DeprecatedObject? Json { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationNoCommentsGetRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationNoCommentsGetRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationNoCommentsGetRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationNoCommentsGetRequest.cs
index 280ccba76..cc6ef90b6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationNoCommentsGetRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationNoCommentsGetRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
using System;
public class DeprecatedOperationNoCommentsGetRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationNoCommentsGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationNoCommentsGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationNoCommentsGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationNoCommentsGetResponse.cs
index 8e20138f0..040a0e9c9 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationNoCommentsGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationNoCommentsGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationWithCommentsGetRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationWithCommentsGetRequest.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationWithCommentsGetRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationWithCommentsGetRequest.cs
index 3ec0b2f21..d869031bb 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationWithCommentsGetRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationWithCommentsGetRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
using System;
public class DeprecatedOperationWithCommentsGetRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationWithCommentsGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationWithCommentsGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationWithCommentsGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationWithCommentsGetResponse.cs
index cdfa67926..88e442991 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DeprecatedOperationWithCommentsGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DeprecatedOperationWithCommentsGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/DifferentFileName.cs b/csharp-client-sdk/Openapi/Models/Operations/DifferentFileName.cs
new file mode 100755
index 000000000..a6ee8de5d
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/DifferentFileName.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class DifferentFileName
+ {
+
+ [SpeakeasyMetadata("multipartForm:content")]
+ public byte[] Content { get; set; } = default!;
+
+ [SpeakeasyMetadata("multipartForm:name=differentFileName")]
+ public string FileName { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/DuplicateParamDuplicateParamResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DuplicateParamDuplicateParamResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/DuplicateParamDuplicateParamResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DuplicateParamDuplicateParamResponse.cs
index c33b731c6..859786092 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DuplicateParamDuplicateParamResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DuplicateParamDuplicateParamResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/DuplicateParamRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/DuplicateParamRequest.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/DuplicateParamRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DuplicateParamRequest.cs
index 5629647e4..7f9e557fe 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DuplicateParamRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DuplicateParamRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class DuplicateParamRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/DuplicateParamResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/DuplicateParamResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/DuplicateParamResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/DuplicateParamResponse.cs
index 3e20382cc..6343529ae 100755
--- a/csharp-client-sdk/SDK/Models/Operations/DuplicateParamResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/DuplicateParamResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/Empty.cs b/csharp-client-sdk/Openapi/Models/Operations/Empty.cs
new file mode 100755
index 000000000..4cfca5131
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/Empty.cs
@@ -0,0 +1,17 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+
+ public class Empty
+ {
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/EmptyObjectGetRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/EmptyObjectGetRequest.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/EmptyObjectGetRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/EmptyObjectGetRequest.cs
index 8cc4c73fc..045356ac5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/EmptyObjectGetRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/EmptyObjectGetRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class EmptyObjectGetRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/EmptyObjectGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/EmptyObjectGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/EmptyObjectGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/EmptyObjectGetResponse.cs
index 91bd4519a..5f02dc853 100755
--- a/csharp-client-sdk/SDK/Models/Operations/EmptyObjectGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/EmptyObjectGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/EmptyRespWithEmptyProperies.cs b/csharp-client-sdk/Openapi/Models/Operations/EmptyRespWithEmptyProperies.cs
new file mode 100755
index 000000000..4940672b2
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/EmptyRespWithEmptyProperies.cs
@@ -0,0 +1,17 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+
+ public class EmptyRespWithEmptyProperies
+ {
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/EmptyResponseObjectWithCommentGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/EmptyResponseObjectWithCommentGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/EmptyResponseObjectWithCommentGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/EmptyResponseObjectWithCommentGetResponse.cs
index f92133a1c..89d22066f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/EmptyResponseObjectWithCommentGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/EmptyResponseObjectWithCommentGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/EmptyResponseObjectWithCommentGetResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/EmptyResponseObjectWithCommentGetResponseBody.cs
new file mode 100755
index 000000000..8022d1e3d
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/EmptyResponseObjectWithCommentGetResponseBody.cs
@@ -0,0 +1,20 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+
+ ///
+ /// OK
+ ///
+ public class EmptyResponseObjectWithCommentGetResponseBody
+ {
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/EmptyWithEmptyProperties.cs b/csharp-client-sdk/Openapi/Models/Operations/EmptyWithEmptyProperties.cs
new file mode 100755
index 000000000..817a0c6ca
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/EmptyWithEmptyProperties.cs
@@ -0,0 +1,17 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+
+ public class EmptyWithEmptyProperties
+ {
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/EnumNameOverride.cs b/csharp-client-sdk/Openapi/Models/Operations/EnumNameOverride.cs
new file mode 100755
index 000000000..be85fecc1
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/EnumNameOverride.cs
@@ -0,0 +1,61 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System;
+
+ ///
+ /// An enum type
+ ///
+ public enum EnumNameOverride
+ {
+ [JsonProperty("value1")]
+ Value1,
+ [JsonProperty("value2")]
+ Value2,
+ [JsonProperty("value3")]
+ Value3,
+ }
+
+ public static class EnumNameOverrideExtension
+ {
+ public static string Value(this EnumNameOverride value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static EnumNameOverride ToEnum(this string value)
+ {
+ foreach(var field in typeof(EnumNameOverride).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is EnumNameOverride)
+ {
+ return (EnumNameOverride)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum EnumNameOverride");
+ }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/EnumParameter.cs b/csharp-client-sdk/Openapi/Models/Operations/EnumParameter.cs
new file mode 100755
index 000000000..e96032196
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/EnumParameter.cs
@@ -0,0 +1,61 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System;
+
+ ///
+ /// An enum type
+ ///
+ public enum EnumParameter
+ {
+ [JsonProperty("value1")]
+ Value1,
+ [JsonProperty("value2")]
+ Value2,
+ [JsonProperty("value3")]
+ Value3,
+ }
+
+ public static class EnumParameterExtension
+ {
+ public static string Value(this EnumParameter value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static EnumParameter ToEnum(this string value)
+ {
+ foreach(var field in typeof(EnumParameter).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is EnumParameter)
+ {
+ return (EnumParameter)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum EnumParameter");
+ }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/File.cs b/csharp-client-sdk/Openapi/Models/Operations/File.cs
new file mode 100755
index 000000000..648914a42
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/File.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class File
+ {
+
+ [SpeakeasyMetadata("multipartForm:content")]
+ public byte[] Content { get; set; } = default!;
+
+ [SpeakeasyMetadata("multipartForm:name=file")]
+ public string FileName { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/FlattenedTypedObjectPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/FlattenedTypedObjectPostRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/FlattenedTypedObjectPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FlattenedTypedObjectPostRes.cs
index b1b26648e..ca78b0f5f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FlattenedTypedObjectPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FlattenedTypedObjectPostRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/FlattenedTypedObjectPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/FlattenedTypedObjectPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/FlattenedTypedObjectPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FlattenedTypedObjectPostResponse.cs
index db609fdc4..9309e1e26 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FlattenedTypedObjectPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FlattenedTypedObjectPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/Form.cs b/csharp-client-sdk/Openapi/Models/Operations/Form.cs
new file mode 100755
index 000000000..6b2775030
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/Form.cs
@@ -0,0 +1,39 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class Form
+ {
+
+ [JsonProperty("arr")]
+ public string Arr { get; set; } = default!;
+
+ [JsonProperty("bool")]
+ public string Bool { get; set; } = default!;
+
+ [JsonProperty("int")]
+ public string Int { get; set; } = default!;
+
+ [JsonProperty("map")]
+ public string Map { get; set; } = default!;
+
+ [JsonProperty("num")]
+ public string Num { get; set; } = default!;
+
+ [JsonProperty("obj")]
+ public string Obj { get; set; } = default!;
+
+ [JsonProperty("str")]
+ public string Str { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayArgs.cs
new file mode 100755
index 000000000..4af0be807
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayArgs.cs
@@ -0,0 +1,25 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+
+ public class FormQueryParamsArrayArgs
+ {
+
+ [JsonProperty("arrParam")]
+ public string ArrParam { get; set; } = default!;
+
+ [JsonProperty("arrParamExploded")]
+ public List ArrParamExploded { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayRequest.cs
index 54561d2ab..ace4f329a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
using System.Collections.Generic;
public class FormQueryParamsArrayRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayRes.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayRes.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayRes.cs
index ceda2ce09..19161d90c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,7 +19,7 @@ public class FormQueryParamsArrayRes
{
[JsonProperty("args")]
- public FormQueryParamsArrayResArgs Args { get; set; } = default!;
+ public FormQueryParamsArrayArgs Args { get; set; } = default!;
[JsonProperty("url")]
public string Url { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayResponse.cs
index ba3774662..4ac9c60f1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsArrayResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsArrayResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectArgs.cs
new file mode 100755
index 000000000..696d2dbaf
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectArgs.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class FormQueryParamsCamelObjectArgs
+ {
+
+ [JsonProperty("item_count")]
+ public string ItemCount { get; set; } = default!;
+
+ [JsonProperty("search_term")]
+ public string SearchTerm { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectRequest.cs
new file mode 100755
index 000000000..a13f99b89
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectRequest.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class FormQueryParamsCamelObjectRequest
+ {
+
+ [SpeakeasyMetadata("queryParam:style=form,explode=true,name=obj_param_exploded")]
+ public ObjParamExploded ObjParamExploded { get; set; } = default!;
+
+ [SpeakeasyMetadata("queryParam:style=form,explode=false,name=obj_param")]
+ public ObjParam? ObjParam { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectRes.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectRes.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectRes.cs
index df0757ad7..b4f9e2fff 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,7 +19,7 @@ public class FormQueryParamsCamelObjectRes
{
[JsonProperty("args")]
- public FormQueryParamsCamelObjectResArgs Args { get; set; } = default!;
+ public FormQueryParamsCamelObjectArgs Args { get; set; } = default!;
[JsonProperty("url")]
public string Url { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectResponse.cs
index 866c99dd9..82eddfe46 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsCamelObjectResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsCamelObjectResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsMapRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsMapRequest.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsMapRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsMapRequest.cs
index 8fe6d83c9..92b1ea986 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsMapRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsMapRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
using System.Collections.Generic;
public class FormQueryParamsMapRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsMapRes.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsMapRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsMapRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsMapRes.cs
index e2f508f93..a4eba54f4 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsMapRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsMapRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsMapResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsMapResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsMapResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsMapResponse.cs
index 9c76f35f5..a3288ffac 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsMapResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsMapResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectArgs.cs
new file mode 100755
index 000000000..0ae7ffca9
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectArgs.cs
@@ -0,0 +1,81 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class FormQueryParamsObjectArgs
+ {
+
+ [JsonProperty("any")]
+ public string Any { get; set; } = default!;
+
+ [JsonProperty("bigint")]
+ public string? Bigint { get; set; }
+
+ [JsonProperty("bigintStr")]
+ public string? BigintStr { get; set; }
+
+ [JsonProperty("bool")]
+ public string Bool { get; set; } = default!;
+
+ [JsonProperty("boolOpt")]
+ public string? BoolOpt { get; set; }
+
+ [JsonProperty("date")]
+ public string Date { get; set; } = default!;
+
+ [JsonProperty("dateTime")]
+ public string DateTime { get; set; } = default!;
+
+ [JsonProperty("decimal")]
+ public string? Decimal { get; set; }
+
+ [JsonProperty("decimalStr")]
+ public string? DecimalStr { get; set; }
+
+ [JsonProperty("enum")]
+ public string Enum { get; set; } = default!;
+
+ [JsonProperty("float32")]
+ public string Float32 { get; set; } = default!;
+
+ [JsonProperty("int")]
+ public string Int { get; set; } = default!;
+
+ [JsonProperty("int32")]
+ public string Int32 { get; set; } = default!;
+
+ [JsonProperty("int32Enum")]
+ public string Int32Enum { get; set; } = default!;
+
+ [JsonProperty("intEnum")]
+ public string IntEnum { get; set; } = default!;
+
+ [JsonProperty("intOptNull")]
+ public string? IntOptNull { get; set; }
+
+ [JsonProperty("num")]
+ public string Num { get; set; } = default!;
+
+ [JsonProperty("numOptNull")]
+ public string? NumOptNull { get; set; }
+
+ [JsonProperty("objParam")]
+ public string ObjParam { get; set; } = default!;
+
+ [JsonProperty("str")]
+ public string Str { get; set; } = default!;
+
+ [JsonProperty("strOpt")]
+ public string? StrOpt { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectRequest.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectRequest.cs
index be8e760fc..03487e2f3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class FormQueryParamsObjectRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectRes.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectRes.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectRes.cs
index 5539af9c0..66597194e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,7 +19,7 @@ public class FormQueryParamsObjectRes
{
[JsonProperty("args")]
- public FormQueryParamsObjectResArgs Args { get; set; } = default!;
+ public FormQueryParamsObjectArgs Args { get; set; } = default!;
[JsonProperty("url")]
public string Url { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectResponse.cs
index d0d3fa5e4..68912d4b1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsObjectResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsObjectResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveArgs.cs
new file mode 100755
index 000000000..5f5b57923
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveArgs.cs
@@ -0,0 +1,30 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class FormQueryParamsPrimitiveArgs
+ {
+
+ [JsonProperty("boolParam")]
+ public string BoolParam { get; set; } = default!;
+
+ [JsonProperty("intParam")]
+ public string IntParam { get; set; } = default!;
+
+ [JsonProperty("numParam")]
+ public string NumParam { get; set; } = default!;
+
+ [JsonProperty("strParam")]
+ public string StrParam { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveRequest.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveRequest.cs
index 20898cf3b..61a095b3f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class FormQueryParamsPrimitiveRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveRes.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveRes.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveRes.cs
index 29b8f7b63..a9448f846 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,7 +19,7 @@ public class FormQueryParamsPrimitiveRes
{
[JsonProperty("args")]
- public FormQueryParamsPrimitiveResArgs Args { get; set; } = default!;
+ public FormQueryParamsPrimitiveArgs Args { get; set; } = default!;
[JsonProperty("url")]
public string Url { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveResponse.cs
index 2e1528f35..ddcf57241 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsPrimitiveResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsPrimitiveResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectArgs.cs
new file mode 100755
index 000000000..9fc07a7c5
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectArgs.cs
@@ -0,0 +1,33 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class FormQueryParamsRefParamObjectArgs
+ {
+
+ [JsonProperty("bool")]
+ public string Bool { get; set; } = default!;
+
+ [JsonProperty("int")]
+ public string Int { get; set; } = default!;
+
+ [JsonProperty("num")]
+ public string Num { get; set; } = default!;
+
+ [JsonProperty("refObjParam")]
+ public string RefObjParam { get; set; } = default!;
+
+ [JsonProperty("str")]
+ public string Str { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectRequest.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectRequest.cs
index ac99d3b50..29d58a795 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class FormQueryParamsRefParamObjectRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectRes.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectRes.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectRes.cs
index 042ed58d2..cade0d8e4 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,7 +19,7 @@ public class FormQueryParamsRefParamObjectRes
{
[JsonProperty("args")]
- public FormQueryParamsRefParamObjectResArgs Args { get; set; } = default!;
+ public FormQueryParamsRefParamObjectArgs Args { get; set; } = default!;
[JsonProperty("url")]
public string Url { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectResponse.cs
index cf4c41e0d..663c1ef86 100755
--- a/csharp-client-sdk/SDK/Models/Operations/FormQueryParamsRefParamObjectResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/FormQueryParamsRefParamObjectResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/GetDocumentationPerLanguageRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/GetDocumentationPerLanguageRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/GetDocumentationPerLanguageRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GetDocumentationPerLanguageRequest.cs
index 271285316..73c306e3f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GetDocumentationPerLanguageRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GetDocumentationPerLanguageRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class GetDocumentationPerLanguageRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/GetDocumentationPerLanguageResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/GetDocumentationPerLanguageResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/GetDocumentationPerLanguageResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GetDocumentationPerLanguageResponse.cs
index 293b21f64..6f5c1835b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GetDocumentationPerLanguageResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GetDocumentationPerLanguageResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/GetGlobalNameOverrideResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/GetGlobalNameOverrideResponse.cs
similarity index 88%
rename from csharp-client-sdk/SDK/Models/Operations/GetGlobalNameOverrideResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GetGlobalNameOverrideResponse.cs
index d8735aa55..23f387264 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GetGlobalNameOverrideResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GetGlobalNameOverrideResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class GetGlobalNameOverrideResponse
///
/// A successful response that contains the simpleObject sent in the request body
///
- public GetGlobalNameOverride200ApplicationJSON? GetGlobalNameOverride200ApplicationJSONObject { get; set; }
+ public GetGlobalNameOverrideResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/GetGlobalNameOverrideResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/GetGlobalNameOverrideResponseBody.cs
new file mode 100755
index 000000000..9c3bd8afb
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/GetGlobalNameOverrideResponseBody.cs
@@ -0,0 +1,30 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+
+ ///
+ /// A successful response that contains the simpleObject sent in the request body
+ ///
+ public class GetGlobalNameOverrideResponseBody
+ {
+
+ ///
+ /// A simple object that uses all our supported primitive types and enums and has optional properties.
+ ///
+ /// https://docs.speakeasyapi.dev} - A link to the external docs.
+ ///
+ [JsonProperty("json")]
+ public SimpleObject? Json { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/GetResourceRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/GetResourceRequest.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/GetResourceRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GetResourceRequest.cs
index 1e50e24b6..6f96e95a1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GetResourceRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GetResourceRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class GetResourceRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/GetResourceResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/GetResourceResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/GetResourceResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GetResourceResponse.cs
index 36d0f5188..c25672fe5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GetResourceResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GetResourceResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/GlobalBearerAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/GlobalBearerAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/GlobalBearerAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GlobalBearerAuthResponse.cs
index 55b85322a..794065d52 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GlobalBearerAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GlobalBearerAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/GlobalBearerAuthToken.cs b/csharp-client-sdk/Openapi/Models/Operations/GlobalBearerAuthToken.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/GlobalBearerAuthToken.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GlobalBearerAuthToken.cs
index 99421f2a5..c9285bc6f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GlobalBearerAuthToken.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GlobalBearerAuthToken.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/GlobalPathParameterGetRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/GlobalPathParameterGetRequest.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/GlobalPathParameterGetRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GlobalPathParameterGetRequest.cs
index 98652f373..b50bdab5e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GlobalPathParameterGetRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GlobalPathParameterGetRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class GlobalPathParameterGetRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/GlobalPathParameterGetRes.cs b/csharp-client-sdk/Openapi/Models/Operations/GlobalPathParameterGetRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/GlobalPathParameterGetRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GlobalPathParameterGetRes.cs
index 46414fa5c..d9509f6a3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GlobalPathParameterGetRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GlobalPathParameterGetRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/GlobalPathParameterGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/GlobalPathParameterGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/GlobalPathParameterGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GlobalPathParameterGetResponse.cs
index 7e73cf482..007424d0d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GlobalPathParameterGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GlobalPathParameterGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/GlobalsQueryParameterGetRequest.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GlobalsQueryParameterGetRequest.cs
index 0191e6628..31e089514 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GlobalsQueryParameterGetRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class GlobalsQueryParameterGetRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetRes.cs b/csharp-client-sdk/Openapi/Models/Operations/GlobalsQueryParameterGetRes.cs
similarity index 84%
rename from csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GlobalsQueryParameterGetRes.cs
index 5bc23e439..c06a5f041 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GlobalsQueryParameterGetRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,6 +19,6 @@ public class GlobalsQueryParameterGetRes
{
[JsonProperty("args")]
- public GlobalsQueryParameterGetResArgs Args { get; set; } = default!;
+ public Args Args { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/GlobalsQueryParameterGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GlobalsQueryParameterGetResponse.cs
index f5419a7c5..b732997a6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GlobalsQueryParameterGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GlobalsQueryParameterGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/GroupFirstGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/GroupFirstGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/GroupFirstGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GroupFirstGetResponse.cs
index 473128d73..07d199b81 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GroupFirstGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GroupFirstGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/GroupSecondGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/GroupSecondGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/GroupSecondGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/GroupSecondGetResponse.cs
index 172e04051..53058d429 100755
--- a/csharp-client-sdk/SDK/Models/Operations/GroupSecondGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/GroupSecondGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsArrayRequest.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsArrayRequest.cs
index 757df47b2..1b1e1d878 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsArrayRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
using System.Collections.Generic;
public class HeaderParamsArrayRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayRes.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsArrayRes.cs
similarity index 84%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsArrayRes.cs
index fa59d6c24..0b8e16f52 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsArrayRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,6 +19,6 @@ public class HeaderParamsArrayRes
{
[JsonProperty("headers")]
- public HeaderParamsArrayResHeaders Headers { get; set; } = default!;
+ public Headers Headers { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsArrayResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsArrayResponse.cs
index 3fe22b1d4..d3527fd64 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsArrayResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsArrayResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapHeaders.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapHeaders.cs
new file mode 100755
index 000000000..21ae3eda7
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapHeaders.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class HeaderParamsMapHeaders
+ {
+
+ [JsonProperty("X-Header-Map")]
+ public string XHeaderMap { get; set; } = default!;
+
+ [JsonProperty("X-Header-Map-Explode")]
+ public string XHeaderMapExplode { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapRequest.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapRequest.cs
index a3d0ecdbb..4eef21117 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
using System.Collections.Generic;
public class HeaderParamsMapRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapRes.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapRes.cs
similarity index 84%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapRes.cs
index 34623f220..ce798049e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,6 +19,6 @@ public class HeaderParamsMapRes
{
[JsonProperty("headers")]
- public HeaderParamsMapResHeaders Headers { get; set; } = default!;
+ public HeaderParamsMapHeaders Headers { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapResponse.cs
index 68fcf229d..882db20a9 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsMapResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsMapResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectHeaders.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectHeaders.cs
new file mode 100755
index 000000000..483e8d623
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectHeaders.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class HeaderParamsObjectHeaders
+ {
+
+ [JsonProperty("X-Header-Obj")]
+ public string XHeaderObj { get; set; } = default!;
+
+ [JsonProperty("X-Header-Obj-Explode")]
+ public string XHeaderObjExplode { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectRequest.cs
index 6660b4032..2b9ff35f4 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class HeaderParamsObjectRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectRes.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectRes.cs
similarity index 83%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectRes.cs
index 148113244..a3e097fb8 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,6 +19,6 @@ public class HeaderParamsObjectRes
{
[JsonProperty("headers")]
- public HeaderParamsObjectResHeaders Headers { get; set; } = default!;
+ public HeaderParamsObjectHeaders Headers { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectResponse.cs
index 929b639c7..12fefdee7 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsObjectResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsObjectResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveHeaders.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveHeaders.cs
new file mode 100755
index 000000000..7f651f350
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveHeaders.cs
@@ -0,0 +1,30 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class HeaderParamsPrimitiveHeaders
+ {
+
+ [JsonProperty("X-Header-Boolean")]
+ public string XHeaderBoolean { get; set; } = default!;
+
+ [JsonProperty("X-Header-Integer")]
+ public string XHeaderInteger { get; set; } = default!;
+
+ [JsonProperty("X-Header-Number")]
+ public string XHeaderNumber { get; set; } = default!;
+
+ [JsonProperty("X-Header-String")]
+ public string XHeaderString { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveRequest.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveRequest.cs
index 0f9937e5b..995bd3bad 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class HeaderParamsPrimitiveRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveRes.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveRes.cs
similarity index 83%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveRes.cs
index c61c5a642..aff81ce4e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,6 +19,6 @@ public class HeaderParamsPrimitiveRes
{
[JsonProperty("headers")]
- public HeaderParamsPrimitiveResHeaders Headers { get; set; } = default!;
+ public HeaderParamsPrimitiveHeaders Headers { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveResponse.cs
index 1e0562058..b3d0405c2 100755
--- a/csharp-client-sdk/SDK/Models/Operations/HeaderParamsPrimitiveResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/HeaderParamsPrimitiveResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/Headers.cs b/csharp-client-sdk/Openapi/Models/Operations/Headers.cs
new file mode 100755
index 000000000..c16e197f6
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/Headers.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class Headers
+ {
+
+ [JsonProperty("X-Header-Array")]
+ public string XHeaderArray { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/IgnoredGenerationGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/IgnoredGenerationGetResponse.cs
similarity index 88%
rename from csharp-client-sdk/SDK/Models/Operations/IgnoredGenerationGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/IgnoredGenerationGetResponse.cs
index e386abc9c..50c8b559c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/IgnoredGenerationGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/IgnoredGenerationGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class IgnoredGenerationGetResponse
///
/// A successful response that contains the simpleObject sent in the request body
///
- public IgnoredGenerationGet200ApplicationJSON? IgnoredGenerationGet200ApplicationJSONObject { get; set; }
+ public IgnoredGenerationGetResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/IgnoredGenerationGetResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/IgnoredGenerationGetResponseBody.cs
new file mode 100755
index 000000000..1cd018ecc
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/IgnoredGenerationGetResponseBody.cs
@@ -0,0 +1,30 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+
+ ///
+ /// A successful response that contains the simpleObject sent in the request body
+ ///
+ public class IgnoredGenerationGetResponseBody
+ {
+
+ ///
+ /// A simple object that uses all our supported primitive types and enums and has optional properties.
+ ///
+ /// https://docs.speakeasyapi.dev} - A link to the external docs.
+ ///
+ [JsonProperty("json")]
+ public SimpleObject? Json { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/IgnoresPostRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/IgnoresPostRequest.cs
similarity index 82%
rename from csharp-client-sdk/SDK/Models/Operations/IgnoresPostRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/IgnoresPostRequest.cs
index 77e54d461..aa08f7740 100755
--- a/csharp-client-sdk/SDK/Models/Operations/IgnoresPostRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/IgnoresPostRequest.cs
@@ -8,15 +8,15 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class IgnoresPostRequest
{
[SpeakeasyMetadata("request:mediaType=application/json")]
- public IgnoresPostApplicationJSON RequestBody { get; set; } = default!;
+ public IgnoresPostRequestBody RequestBody { get; set; } = default!;
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=testParam")]
public string? TestParam { get; set; }
diff --git a/csharp-client-sdk/Openapi/Models/Operations/IgnoresPostRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/IgnoresPostRequestBody.cs
new file mode 100755
index 000000000..4eb1dd1c4
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/IgnoresPostRequestBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class IgnoresPostRequestBody
+ {
+
+ [JsonProperty("callbackUrl")]
+ public string? CallbackUrl { get; set; }
+
+ [JsonProperty("testProp")]
+ public string? TestProp { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/IgnoresPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/IgnoresPostResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/IgnoresPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/IgnoresPostResponse.cs
index ed3c2249a..69b4bb72e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/IgnoresPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/IgnoresPostResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictRequest.cs
index 27fe8346f..14d5e68d8 100755
--- a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class InlineBodyAndParamConflictRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictRequestBody.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictRequestBody.cs
index 03eb7f199..5629f2d8a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictRequestBody.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictRes.cs b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictRes.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictRes.cs
index 580de2fb4..6b49b7f8a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
@@ -23,6 +23,6 @@ public class InlineBodyAndParamConflictRes
public Dictionary Args { get; set; } = default!;
[JsonProperty("json")]
- public InlineBodyAndParamConflictResJson Json { get; set; } = default!;
+ public Json Json { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictResponse.cs
index d2bc06433..e7e4009fe 100755
--- a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamConflictResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamConflictResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictJson.cs b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictJson.cs
new file mode 100755
index 000000000..889d4a9c3
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictJson.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class InlineBodyAndParamNoConflictJson
+ {
+
+ [JsonProperty("bodyStr")]
+ public string BodyStr { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictRequest.cs
index 4fd4c1ce8..5b7b3a3b8 100755
--- a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class InlineBodyAndParamNoConflictRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictRequestBody.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictRequestBody.cs
index 4d909e30a..99df07ff8 100755
--- a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictRequestBody.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictRes.cs b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictRes.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictRes.cs
index 72712c057..62bbce8f5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
@@ -23,6 +23,6 @@ public class InlineBodyAndParamNoConflictRes
public Dictionary Args { get; set; } = default!;
[JsonProperty("json")]
- public InlineBodyAndParamNoConflictResJson Json { get; set; } = default!;
+ public InlineBodyAndParamNoConflictJson Json { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictResponse.cs
index 919bcaf57..0c5b916eb 100755
--- a/csharp-client-sdk/SDK/Models/Operations/InlineBodyAndParamNoConflictResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/InlineBodyAndParamNoConflictResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/Json.cs b/csharp-client-sdk/Openapi/Models/Operations/Json.cs
new file mode 100755
index 000000000..573d8f996
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/Json.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class Json
+ {
+
+ [JsonProperty("str")]
+ public string Str { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectArgs.cs
new file mode 100755
index 000000000..b5468c919
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectArgs.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class JsonQueryParamsObjectArgs
+ {
+
+ [JsonProperty("deepObjParam")]
+ public string DeepObjParam { get; set; } = default!;
+
+ [JsonProperty("simpleObjParam")]
+ public string SimpleObjParam { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectRequest.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectRequest.cs
index 546ca3c7f..abdd31116 100755
--- a/csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class JsonQueryParamsObjectRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectRes.cs b/csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectRes.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectRes.cs
index b1bf172ce..08549731a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,7 +19,7 @@ public class JsonQueryParamsObjectRes
{
[JsonProperty("args")]
- public JsonQueryParamsObjectResArgs Args { get; set; } = default!;
+ public JsonQueryParamsObjectArgs Args { get; set; } = default!;
[JsonProperty("url")]
public string Url { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectResponse.cs
index e9ff6894f..2f25bf934 100755
--- a/csharp-client-sdk/SDK/Models/Operations/JsonQueryParamsObjectResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/JsonQueryParamsObjectResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseArgs.cs
new file mode 100755
index 000000000..ce5ba7e73
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseArgs.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class MixedParametersCamelCaseArgs
+ {
+
+ [JsonProperty("query_string_param")]
+ public string QueryStringParam { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseHeaders.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseHeaders.cs
new file mode 100755
index 000000000..caec4fa9d
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseHeaders.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class MixedParametersCamelCaseHeaders
+ {
+
+ [JsonProperty("Header-Param")]
+ public string HeaderParam { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseRequest.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseRequest.cs
index c443cffa6..b5cbe5231 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class MixedParametersCamelCaseRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseRes.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseRes.cs
similarity index 78%
rename from csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseRes.cs
index 02503e533..788e3a36e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,10 +19,10 @@ public class MixedParametersCamelCaseRes
{
[JsonProperty("args")]
- public MixedParametersCamelCaseResArgs Args { get; set; } = default!;
+ public MixedParametersCamelCaseArgs Args { get; set; } = default!;
[JsonProperty("headers")]
- public MixedParametersCamelCaseResHeaders Headers { get; set; } = default!;
+ public MixedParametersCamelCaseHeaders Headers { get; set; } = default!;
[JsonProperty("url")]
public string Url { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseResponse.cs
index 46e9ac757..9997aab0f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedParametersCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersCamelCaseResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesArgs.cs
new file mode 100755
index 000000000..52987c00e
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesArgs.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class MixedParametersPrimitivesArgs
+ {
+
+ [JsonProperty("queryStringParam")]
+ public string QueryStringParam { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesHeaders.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesHeaders.cs
new file mode 100755
index 000000000..d20d2f72c
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesHeaders.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class MixedParametersPrimitivesHeaders
+ {
+
+ [JsonProperty("Headerparam")]
+ public string Headerparam { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesRequest.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesRequest.cs
index 6ad4156dd..b2bd10033 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class MixedParametersPrimitivesRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesRes.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesRes.cs
similarity index 78%
rename from csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesRes.cs
index 2e09d4059..b0a1b89d7 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,10 +19,10 @@ public class MixedParametersPrimitivesRes
{
[JsonProperty("args")]
- public MixedParametersPrimitivesResArgs Args { get; set; } = default!;
+ public MixedParametersPrimitivesArgs Args { get; set; } = default!;
[JsonProperty("headers")]
- public MixedParametersPrimitivesResHeaders Headers { get; set; } = default!;
+ public MixedParametersPrimitivesHeaders Headers { get; set; } = default!;
[JsonProperty("url")]
public string Url { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesResponse.cs
index 9cc097f91..7aff97d71 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedParametersPrimitivesResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedParametersPrimitivesResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedQueryParamsRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedQueryParamsRequest.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/MixedQueryParamsRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedQueryParamsRequest.cs
index 952900bb6..c93144d61 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedQueryParamsRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedQueryParamsRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class MixedQueryParamsRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedQueryParamsRes.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedQueryParamsRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/MixedQueryParamsRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedQueryParamsRes.cs
index e4c545915..3a40b4217 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedQueryParamsRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedQueryParamsRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedQueryParamsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedQueryParamsResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/MixedQueryParamsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedQueryParamsResponse.cs
index 3dd5ab02b..b6b63ea69 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedQueryParamsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedQueryParamsResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedTypeOneOfPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedTypeOneOfPostRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/MixedTypeOneOfPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedTypeOneOfPostRes.cs
index e30c7399f..beb5a5c09 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedTypeOneOfPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedTypeOneOfPostRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MixedTypeOneOfPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/MixedTypeOneOfPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/MixedTypeOneOfPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MixedTypeOneOfPostResponse.cs
index 389eba511..6cb2e45ad 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MixedTypeOneOfPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MixedTypeOneOfPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleMixedOptionsAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleMixedOptionsAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleMixedOptionsAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleMixedOptionsAuthResponse.cs
index feeb25fb0..63b7ee715 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleMixedOptionsAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleMixedOptionsAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleMixedOptionsAuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleMixedOptionsAuthSecurity.cs
similarity index 88%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleMixedOptionsAuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleMixedOptionsAuthSecurity.cs
index 1fb769b24..cd74ebc6f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleMixedOptionsAuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleMixedOptionsAuthSecurity.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class MultipleMixedOptionsAuthSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleMixedSchemeAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleMixedSchemeAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleMixedSchemeAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleMixedSchemeAuthResponse.cs
index ffd6aed21..607cd5d38 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleMixedSchemeAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleMixedSchemeAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleMixedSchemeAuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleMixedSchemeAuthSecurity.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleMixedSchemeAuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleMixedSchemeAuthSecurity.cs
index 5f0440f08..791d8c14b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleMixedSchemeAuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleMixedSchemeAuthSecurity.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class MultipleMixedSchemeAuthSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthResponse.cs
index 5365c10f3..cd7a9061e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurity.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurity.cs
index 54ca631bf..136cffd68 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class MultipleOptionsWithMixedSchemesAuthSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.cs
index 621a5042b..ef601cb82 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption1.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class MultipleOptionsWithMixedSchemesAuthSecurityOption1
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.cs
index 436ee5723..94c9b917b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithMixedSchemesAuthSecurityOption2.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class MultipleOptionsWithMixedSchemesAuthSecurityOption2
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthResponse.cs
index e0d0973f6..430c29bf0 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurity.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurity.cs
index 4f8e18449..5d515058c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class MultipleOptionsWithSimpleSchemesAuthSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.cs
index ec9ddd722..230884a04 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption1.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class MultipleOptionsWithSimpleSchemesAuthSecurityOption1
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.cs
index d1da018c8..6af2289d3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleOptionsWithSimpleSchemesAuthSecurityOption2.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class MultipleOptionsWithSimpleSchemesAuthSecurityOption2
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleSimpleOptionsAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleOptionsAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleSimpleOptionsAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleOptionsAuthResponse.cs
index 58dc542c9..365275636 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleSimpleOptionsAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleOptionsAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleSimpleOptionsAuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleOptionsAuthSecurity.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleSimpleOptionsAuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleOptionsAuthSecurity.cs
index 16f9b5472..eaf8bec2c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleSimpleOptionsAuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleOptionsAuthSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class MultipleSimpleOptionsAuthSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleSimpleSchemeAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleSchemeAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleSimpleSchemeAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleSchemeAuthResponse.cs
index 03aef22c3..b7572316b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleSimpleSchemeAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleSchemeAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/MultipleSimpleSchemeAuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleSchemeAuthSecurity.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/MultipleSimpleSchemeAuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleSchemeAuthSecurity.cs
index f9efc0917..4443a0324 100755
--- a/csharp-client-sdk/SDK/Models/Operations/MultipleSimpleSchemeAuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/MultipleSimpleSchemeAuthSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class MultipleSimpleSchemeAuthSecurity
{
diff --git a/csharp-client-sdk/Openapi/Models/Operations/NameOverrideGetOverriddenResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NameOverrideGetOverriddenResponse.cs
new file mode 100755
index 000000000..256e167d2
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/NameOverrideGetOverriddenResponse.cs
@@ -0,0 +1,30 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+
+ ///
+ /// A successful response that contains the simpleObject sent in the request body
+ ///
+ public class NameOverrideGetOverriddenResponse
+ {
+
+ ///
+ /// A simple object that uses all our supported primitive types and enums and has optional properties.
+ ///
+ /// https://docs.speakeasyapi.dev} - A link to the external docs.
+ ///
+ [JsonProperty("json")]
+ public SimpleObject? Json { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/NameOverrideGetRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/NameOverrideGetRequest.cs
similarity index 84%
rename from csharp-client-sdk/SDK/Models/Operations/NameOverrideGetRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NameOverrideGetRequest.cs
index 28ec6b4bc..18b740a08 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NameOverrideGetRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NameOverrideGetRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class NameOverrideGetRequest
{
@@ -19,7 +19,7 @@ public class NameOverrideGetRequest
/// An enum type
///
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=enumNameOverride")]
- public NameOverrideGetEnumNameOverride TestEnumQueryParam { get; set; } = default!;
+ public EnumNameOverride TestEnumQueryParam { get; set; } = default!;
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=nameOverride")]
public string TestQueryParam { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/NameOverrideGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NameOverrideGetResponse.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/NameOverrideGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NameOverrideGetResponse.cs
index 498f5904e..cf20f5d2f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NameOverrideGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NameOverrideGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class NameOverrideGetResponse
///
/// A successful response that contains the simpleObject sent in the request body
///
- public OverriddenResponse? OverriddenResponse { get; set; }
+ public NameOverrideGetOverriddenResponse? OverriddenResponse { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/NestFirstGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NestFirstGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/NestFirstGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NestFirstGetResponse.cs
index 5fe22279b..5ec2f27d5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NestFirstGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NestFirstGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/NestedFirstGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NestedFirstGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/NestedFirstGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NestedFirstGetResponse.cs
index 1b509d8e8..267c655f8 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NestedFirstGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NestedFirstGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/NestedGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NestedGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/NestedGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NestedGetResponse.cs
index 0e285c8ca..6cb6fea34 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NestedGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NestedGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/NestedSecondGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NestedSecondGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/NestedSecondGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NestedSecondGetResponse.cs
index b84dbdb72..1efe56b9a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NestedSecondGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NestedSecondGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableObjectPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableObjectPostRes.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/NullableObjectPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableObjectPostRes.cs
index 1eb42583b..870bfa8e1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableObjectPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableObjectPostRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableObjectPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableObjectPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/NullableObjectPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableObjectPostResponse.cs
index d7a10dc39..3f4006d3f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableObjectPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableObjectPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfRefInObjectPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfRefInObjectPostRes.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/NullableOneOfRefInObjectPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableOneOfRefInObjectPostRes.cs
index 73da6a27a..a42542ee3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfRefInObjectPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfRefInObjectPostRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfRefInObjectPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfRefInObjectPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/NullableOneOfRefInObjectPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableOneOfRefInObjectPostResponse.cs
index e896a6b6a..5efb8e5f7 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfRefInObjectPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfRefInObjectPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfSchemaPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfSchemaPostRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/NullableOneOfSchemaPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableOneOfSchemaPostRes.cs
index 39a8f1b9c..0673fc460 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfSchemaPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfSchemaPostRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfSchemaPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfSchemaPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/NullableOneOfSchemaPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableOneOfSchemaPostResponse.cs
index a2f342d9d..115e05ae7 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfSchemaPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfSchemaPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfTypeInObjectPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfTypeInObjectPostRes.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/NullableOneOfTypeInObjectPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableOneOfTypeInObjectPostRes.cs
index 854cfd717..59461095b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfTypeInObjectPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfTypeInObjectPostRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfTypeInObjectPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfTypeInObjectPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/NullableOneOfTypeInObjectPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableOneOfTypeInObjectPostResponse.cs
index fbceb66eb..4a4df1e07 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableOneOfTypeInObjectPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableOneOfTypeInObjectPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/NullableOptionalObj.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableOptionalObj.cs
new file mode 100755
index 000000000..5582ea430
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableOptionalObj.cs
@@ -0,0 +1,17 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+
+ public class NullableOptionalObj
+ {
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredEmptyObjectPostRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredEmptyObjectPostRequestBody.cs
new file mode 100755
index 000000000..05a5e5b16
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredEmptyObjectPostRequestBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class NullableRequiredEmptyObjectPostRequestBody
+ {
+
+ [JsonProperty("NullableRequiredObj")]
+ public NullableRequiredObj NullableRequiredObj { get; set; } = default!;
+
+ [JsonProperty("RequiredObj")]
+ public RequiredObj RequiredObj { get; set; } = default!;
+
+ [JsonProperty("NullableOptionalObj")]
+ public NullableOptionalObj? NullableOptionalObj { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredEmptyObjectPostResponse.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableRequiredEmptyObjectPostResponse.cs
index cec8ba52e..5e69f7ea5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredEmptyObjectPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredEmptyObjectPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class NullableRequiredEmptyObjectPostResponse
///
/// OK
///
- public string? NullableRequiredEmptyObjectPost200ApplicationJSONString { get; set; }
+ public string? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredEnum.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredEnum.cs
new file mode 100755
index 000000000..9cbf05fa9
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredEnum.cs
@@ -0,0 +1,56 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System;
+
+ public enum NullableRequiredEnum
+ {
+ [JsonProperty("first")]
+ First,
+ [JsonProperty("second")]
+ Second,
+ }
+
+ public static class NullableRequiredEnumExtension
+ {
+ public static string Value(this NullableRequiredEnum value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static NullableRequiredEnum ToEnum(this string value)
+ {
+ foreach(var field in typeof(NullableRequiredEnum).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is NullableRequiredEnum)
+ {
+ return (NullableRequiredEnum)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum NullableRequiredEnum");
+ }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredObj.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredObj.cs
new file mode 100755
index 000000000..6edc4e69e
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredObj.cs
@@ -0,0 +1,17 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+
+ public class NullableRequiredObj
+ {
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredPropertyPostRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredPropertyPostRequestBody.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/NullableRequiredPropertyPostRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableRequiredPropertyPostRequestBody.cs
index 4afa380a9..1f733d7a3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredPropertyPostRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredPropertyPostRequestBody.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
@@ -20,7 +20,7 @@ public class NullableRequiredPropertyPostRequestBody
public List NullableRequiredArray { get; set; } = default!;
[JsonProperty("NullableRequiredEnum")]
- public NullableRequiredPropertyPostRequestBodyNullableRequiredEnum NullableRequiredEnum { get; set; } = default!;
+ public NullableRequiredEnum NullableRequiredEnum { get; set; } = default!;
[JsonProperty("NullableRequiredInt")]
public long NullableRequiredInt { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredPropertyPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredPropertyPostResponse.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/NullableRequiredPropertyPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableRequiredPropertyPostResponse.cs
index fd10ac144..0541859af 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredPropertyPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredPropertyPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class NullableRequiredPropertyPostResponse
///
/// OK
///
- public string? NullableRequiredPropertyPost200ApplicationJSONString { get; set; }
+ public string? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredSharedObjectPostRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredSharedObjectPostRequestBody.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/NullableRequiredSharedObjectPostRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableRequiredSharedObjectPostRequestBody.cs
index 63eed7134..771fdceac 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredSharedObjectPostRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredSharedObjectPostRequestBody.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
public class NullableRequiredSharedObjectPostRequestBody
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredSharedObjectPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredSharedObjectPostResponse.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/NullableRequiredSharedObjectPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableRequiredSharedObjectPostResponse.cs
index 14065bb75..c3ac58c85 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableRequiredSharedObjectPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableRequiredSharedObjectPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class NullableRequiredSharedObjectPostResponse
///
/// OK
///
- public string? NullableRequiredSharedObjectPost200ApplicationJSONString { get; set; }
+ public string? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableTypedObjectPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableTypedObjectPostRes.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/NullableTypedObjectPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableTypedObjectPostRes.cs
index 9b6c4c65c..7bb27de86 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableTypedObjectPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableTypedObjectPostRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/NullableTypedObjectPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/NullableTypedObjectPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/NullableTypedObjectPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/NullableTypedObjectPostResponse.cs
index cc05f5fe6..a40ac76ac 100755
--- a/csharp-client-sdk/SDK/Models/Operations/NullableTypedObjectPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/NullableTypedObjectPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/Oauth2AuthNewResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthNewResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/Oauth2AuthNewResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthNewResponse.cs
index 9a6814619..cc0cd750b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/Oauth2AuthNewResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthNewResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/Oauth2AuthNewSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthNewSecurity.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/Oauth2AuthNewSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthNewSecurity.cs
index ff956602a..45dd39c39 100755
--- a/csharp-client-sdk/SDK/Models/Operations/Oauth2AuthNewSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthNewSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class Oauth2AuthNewSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/Oauth2AuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/Oauth2AuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthResponse.cs
index ebb85ebaf..5d99841df 100755
--- a/csharp-client-sdk/SDK/Models/Operations/Oauth2AuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/Oauth2AuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthSecurity.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/Oauth2AuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthSecurity.cs
index d281a29ac..56d017bf5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/Oauth2AuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class Oauth2AuthSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/Oauth2AuthToken.cs b/csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthToken.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/Oauth2AuthToken.cs
rename to csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthToken.cs
index 7564440b4..644ad4d4f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/Oauth2AuthToken.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/Oauth2AuthToken.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideRequest.cs
index 7614f3680..5386b8112 100755
--- a/csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideRequest.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
public class Oauth2OverrideRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideResponse.cs
index e72967412..7bb1ecf97 100755
--- a/csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideSecurity.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideSecurity.cs
index 2a51c155d..ed8a2b3b9 100755
--- a/csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class Oauth2OverrideSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideToken.cs b/csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideToken.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideToken.cs
rename to csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideToken.cs
index cb9d346fc..c81f286bb 100755
--- a/csharp-client-sdk/SDK/Models/Operations/Oauth2OverrideToken.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/Oauth2OverrideToken.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/Obj.cs b/csharp-client-sdk/Openapi/Models/Operations/Obj.cs
new file mode 100755
index 000000000..c78759afa
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/Obj.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class Obj
+ {
+
+ [SpeakeasyMetadata("queryParam:name=bool")]
+ public bool Bool { get; set; } = default!;
+
+ [SpeakeasyMetadata("queryParam:name=num")]
+ public double Num { get; set; } = default!;
+
+ [SpeakeasyMetadata("queryParam:name=str")]
+ public string Str { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/ObjArrParam.cs b/csharp-client-sdk/Openapi/Models/Operations/ObjArrParam.cs
new file mode 100755
index 000000000..517be75ad
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/ObjArrParam.cs
@@ -0,0 +1,22 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+ using System.Collections.Generic;
+
+ public class ObjArrParam
+ {
+
+ [SpeakeasyMetadata("queryParam:name=arr")]
+ public List? Arr { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/ObjParam.cs b/csharp-client-sdk/Openapi/Models/Operations/ObjParam.cs
new file mode 100755
index 000000000..e385bfa62
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/ObjParam.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class ObjParam
+ {
+
+ [SpeakeasyMetadata("queryParam:name=encoded_count")]
+ public string? EncodedCount { get; set; }
+
+ [SpeakeasyMetadata("queryParam:name=encoded_term")]
+ public string? EncodedTerm { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/ObjParamExploded.cs b/csharp-client-sdk/Openapi/Models/Operations/ObjParamExploded.cs
new file mode 100755
index 000000000..0e8c37c2e
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/ObjParamExploded.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class ObjParamExploded
+ {
+
+ [SpeakeasyMetadata("queryParam:name=item_count")]
+ public string? ItemCount { get; set; }
+
+ [SpeakeasyMetadata("queryParam:name=search_term")]
+ public string? SearchTerm { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/ObjectCircularReferenceGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ObjectCircularReferenceGetResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/ObjectCircularReferenceGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ObjectCircularReferenceGetResponse.cs
index 2318aee1b..25970b49a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ObjectCircularReferenceGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ObjectCircularReferenceGetResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/OneOfCircularReferenceGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/OneOfCircularReferenceGetResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/OneOfCircularReferenceGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/OneOfCircularReferenceGetResponse.cs
index 1a5845cc5..79f8a450c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/OneOfCircularReferenceGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/OneOfCircularReferenceGetResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthNewResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthNewResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthNewResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthNewResponse.cs
index 83c8054cd..44668ed80 100755
--- a/csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthNewResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthNewResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthNewSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthNewSecurity.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthNewSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthNewSecurity.cs
index c34dd1f87..fd7da1d37 100755
--- a/csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthNewSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthNewSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class OpenIdConnectAuthNewSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthResponse.cs
index c871a1312..d52e896c7 100755
--- a/csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthSecurity.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthSecurity.cs
index fc1e1fb92..7d34d7049 100755
--- a/csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class OpenIdConnectAuthSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthToken.cs b/csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthToken.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthToken.cs
rename to csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthToken.cs
index c3eba09da..2de9328d6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/OpenIdConnectAuthToken.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/OpenIdConnectAuthToken.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/OptEnumParameter.cs b/csharp-client-sdk/Openapi/Models/Operations/OptEnumParameter.cs
new file mode 100755
index 000000000..1fcccbd55
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/OptEnumParameter.cs
@@ -0,0 +1,61 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System;
+
+ ///
+ /// An enum type
+ ///
+ public enum OptEnumParameter
+ {
+ [JsonProperty("value1")]
+ Value1,
+ [JsonProperty("value2")]
+ Value2,
+ [JsonProperty("value3")]
+ Value3,
+ }
+
+ public static class OptEnumParameterExtension
+ {
+ public static string Value(this OptEnumParameter value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static OptEnumParameter ToEnum(this string value)
+ {
+ foreach(var field in typeof(OptEnumParameter).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is OptEnumParameter)
+ {
+ return (OptEnumParameter)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum OptEnumParameter");
+ }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorBodyRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorBodyRequestBody.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationCursorBodyRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationCursorBodyRequestBody.cs
index 760cbc425..da09a59ec 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorBodyRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorBodyRequestBody.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorBodyRes.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorBodyRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationCursorBodyRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationCursorBodyRes.cs
index 5b978ed7d..78a374659 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorBodyRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorBodyRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorBodyResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorBodyResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationCursorBodyResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationCursorBodyResponse.cs
index a0a9b19ab..0f7cf3e7f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorBodyResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorBodyResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System.Threading.Tasks;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorParamsRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorParamsRequest.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationCursorParamsRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationCursorParamsRequest.cs
index c80ba9ce6..cb1410d0c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorParamsRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorParamsRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class PaginationCursorParamsRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorParamsRes.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorParamsRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationCursorParamsRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationCursorParamsRes.cs
index 415f5b32d..1289af334 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorParamsRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorParamsRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorParamsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorParamsResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationCursorParamsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationCursorParamsResponse.cs
index d48be0a0b..825f3f13b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationCursorParamsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationCursorParamsResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System.Threading.Tasks;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetBodyRes.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetBodyRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetBodyRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetBodyRes.cs
index 2d296a96c..18dad559c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetBodyRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetBodyRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetBodyResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetBodyResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetBodyResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetBodyResponse.cs
index d881c9f5f..4eda96e0b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetBodyResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetBodyResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System.Threading.Tasks;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetParamsRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetParamsRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsRequest.cs
index 7546ec9f2..ac8357440 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetParamsRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class PaginationLimitOffsetOffsetParamsRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetParamsRes.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetParamsRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsRes.cs
index 8049520ec..90df2d854 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetParamsRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetParamsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetParamsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsResponse.cs
index 1902a9a4d..db3ca37e7 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetOffsetParamsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetOffsetParamsResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System.Threading.Tasks;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageBodyRes.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageBodyRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageBodyRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageBodyRes.cs
index 359dea867..684e9cd44 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageBodyRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageBodyRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageBodyResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageBodyResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageBodyResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageBodyResponse.cs
index df9d6c4f8..757594b7b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageBodyResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageBodyResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System.Threading.Tasks;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageParamsRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageParamsRequest.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageParamsRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageParamsRequest.cs
index c45a6b379..7c2086b70 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageParamsRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageParamsRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class PaginationLimitOffsetPageParamsRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageParamsRes.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageParamsRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageParamsRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageParamsRes.cs
index ed4c68e66..8968d2bb5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageParamsRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageParamsRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageParamsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageParamsResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageParamsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageParamsResponse.cs
index 2eeb7a993..97352e732 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PaginationLimitOffsetPageParamsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PaginationLimitOffsetPageParamsResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System.Threading.Tasks;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PathParameterJsonRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/PathParameterJsonRequest.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/PathParameterJsonRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PathParameterJsonRequest.cs
index 399e58d14..381a839bd 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PathParameterJsonRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PathParameterJsonRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class PathParameterJsonRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/PathParameterJsonRes.cs b/csharp-client-sdk/Openapi/Models/Operations/PathParameterJsonRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/PathParameterJsonRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PathParameterJsonRes.cs
index 4d865d499..1ff600d11 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PathParameterJsonRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PathParameterJsonRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PathParameterJsonResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/PathParameterJsonResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/PathParameterJsonResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PathParameterJsonResponse.cs
index ae540be24..a6d8a1d74 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PathParameterJsonResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PathParameterJsonResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayArgs.cs
new file mode 100755
index 000000000..307770585
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayArgs.cs
@@ -0,0 +1,25 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+
+ public class PipeDelimitedQueryParamsArrayArgs
+ {
+
+ [JsonProperty("arrParam")]
+ public string ArrParam { get; set; } = default!;
+
+ [JsonProperty("arrParamExploded")]
+ public List ArrParamExploded { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayRequest.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayRequest.cs
index f143d111b..137d2adf3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
using System.Collections.Generic;
public class PipeDelimitedQueryParamsArrayRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayRes.cs b/csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayRes.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayRes.cs
index aa4310196..753e94d59 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,7 +19,7 @@ public class PipeDelimitedQueryParamsArrayRes
{
[JsonProperty("args")]
- public PipeDelimitedQueryParamsArrayResArgs Args { get; set; } = default!;
+ public PipeDelimitedQueryParamsArrayArgs Args { get; set; } = default!;
[JsonProperty("url")]
public string Url { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayResponse.cs
index 79717254a..35f6af748 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PipeDelimitedQueryParamsArrayResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PipeDelimitedQueryParamsArrayResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PrimitiveTypeOneOfPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/PrimitiveTypeOneOfPostRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/PrimitiveTypeOneOfPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PrimitiveTypeOneOfPostRes.cs
index 1555d7038..20a219061 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PrimitiveTypeOneOfPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PrimitiveTypeOneOfPostRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PrimitiveTypeOneOfPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/PrimitiveTypeOneOfPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/PrimitiveTypeOneOfPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PrimitiveTypeOneOfPostResponse.cs
index 16127a5cd..d1065f81e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PrimitiveTypeOneOfPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PrimitiveTypeOneOfPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/PutAnythingIgnoredGenerationResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/PutAnythingIgnoredGenerationResponse.cs
similarity index 87%
rename from csharp-client-sdk/SDK/Models/Operations/PutAnythingIgnoredGenerationResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/PutAnythingIgnoredGenerationResponse.cs
index 01275b9d6..1f8e92081 100755
--- a/csharp-client-sdk/SDK/Models/Operations/PutAnythingIgnoredGenerationResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/PutAnythingIgnoredGenerationResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class PutAnythingIgnoredGenerationResponse
///
/// OK
///
- public PutAnythingIgnoredGeneration200ApplicationJSON? PutAnythingIgnoredGeneration200ApplicationJSONObject { get; set; }
+ public PutAnythingIgnoredGenerationResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/PutAnythingIgnoredGenerationResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/PutAnythingIgnoredGenerationResponseBody.cs
new file mode 100755
index 000000000..2e088ea66
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/PutAnythingIgnoredGenerationResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class PutAnythingIgnoredGenerationResponseBody
+ {
+
+ [JsonProperty("json")]
+ public string? Json { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.cs
similarity index 88%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.cs
index b6d553e41..4a75aa218 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayCamelCaseResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
@@ -36,6 +36,6 @@ public class RequestBodyPostApplicationJsonArrayCamelCaseResponse
///
/// OK
///
- public List? SimpleObjectCamelCases { get; set; }
+ public List? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse.cs
index fac623d1d..2e4c2723b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayObjCamelCaseResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayObjResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayObjResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayObjResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayObjResponse.cs
index 5884e23cf..1cee06e10 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayObjResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayObjResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.cs
index 225341f1d..9ea94aa99 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
@@ -36,6 +36,6 @@ public class RequestBodyPostApplicationJsonArrayOfArrayCamelCaseResponse
///
/// OK
///
- public List>? Arrs { get; set; }
+ public List>? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.cs
index 0bb8e30a6..0b24e0c34 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Collections.Generic;
using System.Net.Http;
@@ -35,6 +35,6 @@ public class RequestBodyPostApplicationJsonArrayOfArrayOfPrimitiveResponse
///
/// OK
///
- public List>? Arrs { get; set; }
+ public List>? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.cs
index 6796eae45..c2b4a4035 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfArrayResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
@@ -36,6 +36,6 @@ public class RequestBodyPostApplicationJsonArrayOfArrayResponse
///
/// OK
///
- public List>? Arrs { get; set; }
+ public List>? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.cs
index 01d6fa50e..43594d7d6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
@@ -36,6 +36,6 @@ public class RequestBodyPostApplicationJsonArrayOfMapCamelCaseResponse
///
/// OK
///
- public List>? Maps { get; set; }
+ public List>? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.cs
similarity index 88%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.cs
index 44348f22a..73adb1e72 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfMapResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
@@ -36,6 +36,6 @@ public class RequestBodyPostApplicationJsonArrayOfMapResponse
///
/// OK
///
- public List>? Maps { get; set; }
+ public List>? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.cs
index 384ac1b10..b29deab36 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayOfPrimitiveResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Collections.Generic;
using System.Net.Http;
@@ -35,6 +35,6 @@ public class RequestBodyPostApplicationJsonArrayOfPrimitiveResponse
///
/// OK
///
- public List? Strings { get; set; }
+ public List? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.cs
index 10ef124b5..28a0b29ef 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonArrayResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
@@ -36,6 +36,6 @@ public class RequestBodyPostApplicationJsonArrayResponse
///
/// OK
///
- public List? SimpleObjects { get; set; }
+ public List? Res { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseRes.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseRes.cs
index 833d13adf..739d998f7 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.cs
index a3eacd5ab..310575eb0 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepCamelCaseResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepRes.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepRes.cs
index 2616da2fb..bb540d660 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepResponse.cs
index f64db77b4..0c77469a1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonDeepResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonDeepResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapCamelCaseResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapCamelCaseResponse.cs
index 0438da669..ad865d4d3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapCamelCaseResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapObjCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapObjCamelCaseResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapObjCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapObjCamelCaseResponse.cs
index f0599a2bb..b0ffb0d3d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapObjCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapObjCamelCaseResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapObjResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapObjResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapObjResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapObjResponse.cs
index 7c252e18e..d8addf9bb 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapObjResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapObjResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse.cs
index bd7b28c29..395c4d95e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayCamelCaseResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayResponse.cs
index 5cc7424ea..4a2931954 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfArrayResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse.cs
index af5bea6b5..821f116bc 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapCamelCaseResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapOfPrimitiveResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapOfPrimitiveResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapOfPrimitiveResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapOfPrimitiveResponse.cs
index aebf21bbc..d2a841722 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapOfPrimitiveResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapOfPrimitiveResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Collections.Generic;
using System.Net.Http;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapResponse.cs
index da68a46d2..c99a0c7b7 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfMapResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfMapResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfPrimitiveResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfPrimitiveResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfPrimitiveResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfPrimitiveResponse.cs
index 5f17f7a08..95c0b73e6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapOfPrimitiveResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapOfPrimitiveResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Collections.Generic;
using System.Net.Http;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapResponse.cs
index d2fcd72de..98495982e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMapResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMapResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Collections.Generic;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes.cs
index 93aa5c513..a5661c38e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.cs
index 26523a485..03225720a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonMultipleJsonFilteredResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.cs
index 8e86ec1b3..5f116b724 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.cs
index e44a75a8b..1b34f83e5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleCamelCaseResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleRes.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleRes.cs
index 82eec6f80..b31976aca 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleResponse.cs
index 1beac6117..44fbf4ee0 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostApplicationJsonSimpleResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostApplicationJsonSimpleResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostComplexNumberTypesRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostComplexNumberTypesRequest.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostComplexNumberTypesRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostComplexNumberTypesRequest.cs
index 6a4ec8319..cfc89b650 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostComplexNumberTypesRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostComplexNumberTypesRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
using System.Numerics;
public class RequestBodyPostComplexNumberTypesRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostComplexNumberTypesResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostComplexNumberTypesResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostComplexNumberTypesResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostComplexNumberTypesResponse.cs
index c63a11e33..cdca9ac7e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostComplexNumberTypesResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostComplexNumberTypesResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostComplexNumberTypesResponse
///
/// OK
///
- public RequestBodyPostComplexNumberTypes200ApplicationJSON? RequestBodyPostComplexNumberTypes200ApplicationJSONObject { get; set; }
+ public RequestBodyPostComplexNumberTypesResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostComplexNumberTypesResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostComplexNumberTypesResponseBody.cs
new file mode 100755
index 000000000..ec856307c
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostComplexNumberTypesResponseBody.cs
@@ -0,0 +1,28 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostComplexNumberTypesResponseBody
+ {
+
+ [JsonProperty("json")]
+ public ComplexNumberTypes Json { get; set; } = default!;
+
+ [JsonProperty("url")]
+ public string Url { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.cs
index 4d17e83b7..c91312d6f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostDefaultsAndConstsResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostDefaultsAndConstsResponse
///
/// OK
///
- public RequestBodyPostDefaultsAndConsts200ApplicationJSON? RequestBodyPostDefaultsAndConsts200ApplicationJSONObject { get; set; }
+ public RequestBodyPostDefaultsAndConstsResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostDefaultsAndConstsResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostDefaultsAndConstsResponseBody.cs
new file mode 100755
index 000000000..4d5a1ff12
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostDefaultsAndConstsResponseBody.cs
@@ -0,0 +1,25 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostDefaultsAndConstsResponseBody
+ {
+
+ [JsonProperty("json")]
+ public DefaultsAndConstsOutput Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectEmpty.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectEmpty.cs
new file mode 100755
index 000000000..b2b58f90d
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectEmpty.cs
@@ -0,0 +1,17 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+
+ public class RequestBodyPostEmptyObjectEmpty
+ {
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectRequestBody.cs
new file mode 100755
index 000000000..d345a6b94
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectRequestBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPostEmptyObjectRequestBody
+ {
+
+ [JsonProperty("empty")]
+ public Empty? Empty { get; set; }
+
+ [JsonProperty("emptyWithEmptyProperties")]
+ public EmptyWithEmptyProperties? EmptyWithEmptyProperties { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectResponse.cs
similarity index 87%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectResponse.cs
index cdd058729..79e5ec9f5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostEmptyObjectResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostEmptyObjectResponse
///
/// OK
///
- public RequestBodyPostEmptyObject200ApplicationJSON? RequestBodyPostEmptyObject200ApplicationJSONObject { get; set; }
+ public RequestBodyPostEmptyObjectResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectResponseBody.cs
new file mode 100755
index 000000000..528468a42
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostEmptyObjectResponseBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostEmptyObjectResponseBody
+ {
+
+ [JsonProperty("empty")]
+ public RequestBodyPostEmptyObjectEmpty? Empty { get; set; }
+
+ [JsonProperty("emptyRespWithEmptyProperies")]
+ public EmptyRespWithEmptyProperies? EmptyRespWithEmptyProperies { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormDeepRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormDeepRes.cs
similarity index 84%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormDeepRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormDeepRes.cs
index ee065c284..370db7e8b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormDeepRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormDeepRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,6 +19,6 @@ public class RequestBodyPostFormDeepRes
{
[JsonProperty("form")]
- public RequestBodyPostFormDeepResForm Form { get; set; } = default!;
+ public Form Form { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormDeepResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormDeepResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormDeepResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormDeepResponse.cs
index 371518d37..da1190d5d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormDeepResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormDeepResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormMapPrimitiveRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormMapPrimitiveRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormMapPrimitiveRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormMapPrimitiveRes.cs
index f226cbd4e..cdf727b1d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormMapPrimitiveRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormMapPrimitiveRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormMapPrimitiveResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormMapPrimitiveResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormMapPrimitiveResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormMapPrimitiveResponse.cs
index 3f95296c5..e64ef4450 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormMapPrimitiveResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormMapPrimitiveResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleForm.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleForm.cs
new file mode 100755
index 000000000..e38edab36
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleForm.cs
@@ -0,0 +1,60 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPostFormSimpleForm
+ {
+
+ [JsonProperty("any")]
+ public string Any { get; set; } = default!;
+
+ [JsonProperty("bool")]
+ public string Bool { get; set; } = default!;
+
+ [JsonProperty("boolOpt")]
+ public string? BoolOpt { get; set; }
+
+ [JsonProperty("date")]
+ public string Date { get; set; } = default!;
+
+ [JsonProperty("dateTime")]
+ public string DateTime { get; set; } = default!;
+
+ [JsonProperty("enum")]
+ public string Enum { get; set; } = default!;
+
+ [JsonProperty("float32")]
+ public string Float32 { get; set; } = default!;
+
+ [JsonProperty("int")]
+ public string Int { get; set; } = default!;
+
+ [JsonProperty("int32")]
+ public string Int32 { get; set; } = default!;
+
+ [JsonProperty("intOptNull")]
+ public string? IntOptNull { get; set; }
+
+ [JsonProperty("num")]
+ public string Num { get; set; } = default!;
+
+ [JsonProperty("numOptNull")]
+ public string? NumOptNull { get; set; }
+
+ [JsonProperty("str")]
+ public string Str { get; set; } = default!;
+
+ [JsonProperty("strOpt")]
+ public string? StrOpt { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleHeaders.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleHeaders.cs
new file mode 100755
index 000000000..293274656
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleHeaders.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPostFormSimpleHeaders
+ {
+
+ [JsonProperty("Content-Type")]
+ public string ContentType { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleRes.cs
similarity index 75%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleRes.cs
index d56055589..601287b78 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,9 +19,9 @@ public class RequestBodyPostFormSimpleRes
{
[JsonProperty("form")]
- public RequestBodyPostFormSimpleResForm Form { get; set; } = default!;
+ public RequestBodyPostFormSimpleForm Form { get; set; } = default!;
[JsonProperty("headers")]
- public RequestBodyPostFormSimpleResHeaders Headers { get; set; } = default!;
+ public RequestBodyPostFormSimpleHeaders Headers { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleResponse.cs
index 5f86491f4..9a52d83eb 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostFormSimpleResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostFormSimpleResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.cs
index ffadb61c7..988058da8 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesArrayBigIntResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSON? RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesArrayBigIntResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.cs
new file mode 100755
index 000000000..6fa422bca
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayBigIntResponseBody.cs
@@ -0,0 +1,29 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+ using System.Numerics;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesArrayBigIntResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ public List Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.cs
index 32efc2b70..c6c2c95dc 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesArrayDateResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesArrayDate200ApplicationJSON? RequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesArrayDateResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.cs
new file mode 100755
index 000000000..16cdc91b1
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDateResponseBody.cs
@@ -0,0 +1,29 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using NodaTime;
+ using System.Collections.Generic;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesArrayDateResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ public List Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.cs
index 07a599358..633dfa4ee 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesArrayDecimalStrResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSON? RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.cs
new file mode 100755
index 000000000..4956253a5
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody.cs
@@ -0,0 +1,28 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesArrayDecimalStrResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ public List Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.cs
index 685e81076..81dfb4493 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesBigIntResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesBigInt200ApplicationJSON? RequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesBigIntResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponseBody.cs
new file mode 100755
index 000000000..628f32fc1
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntResponseBody.cs
@@ -0,0 +1,28 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Numerics;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesBigIntResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ public BigInteger Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.cs
index f6ec774cd..97bd59b86 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesBigIntStrResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSON? RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesBigIntStrResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.cs
new file mode 100755
index 000000000..3ac144eb1
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBigIntStrResponseBody.cs
@@ -0,0 +1,30 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Utils;
+ using System.Numerics;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesBigIntStrResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ [JsonConverter(typeof(BigIntSerializer))]
+ public BigInteger Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.cs
index c96768eb6..21dbca9a1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesBooleanResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesBoolean200ApplicationJSON? RequestBodyPostJSONDataTypesBoolean200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesBooleanResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponseBody.cs
new file mode 100755
index 000000000..2e8bde6b3
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesBooleanResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesBooleanResponseBody
+ {
+
+ [JsonProperty("json")]
+ public bool Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.cs
index f4d3717be..30fb42de7 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesDateResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesDate200ApplicationJSON? RequestBodyPostJSONDataTypesDate200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesDateResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateResponseBody.cs
new file mode 100755
index 000000000..60a5f0443
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateResponseBody.cs
@@ -0,0 +1,28 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using NodaTime;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesDateResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ public LocalDate Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.cs
index 813e49c1b..77aab013c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesDateTimeResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesDateTime200ApplicationJSON? RequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesDateTimeResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.cs
new file mode 100755
index 000000000..62da23d49
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDateTimeResponseBody.cs
@@ -0,0 +1,28 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesDateTimeResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ public DateTime Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.cs
index 03c818ff1..9f3507761 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesDecimalResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesDecimal200ApplicationJSON? RequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesDecimalResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponseBody.cs
new file mode 100755
index 000000000..8f8c5f5f3
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalResponseBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesDecimalResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ public decimal Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.cs
index 587dd8ecf..6803106de 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesDecimalStrResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSON? RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesDecimalStrResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.cs
new file mode 100755
index 000000000..6f6b4cc8b
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesDecimalStrResponseBody.cs
@@ -0,0 +1,29 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Utils;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesDecimalStrResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ [JsonConverter(typeof(DecimalSerializer))]
+ public decimal Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.cs
index 49cc2b503..4378541d3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesFloat32Response.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesFloat32Response
///
/// OK
///
- public RequestBodyPostJSONDataTypesFloat32200ApplicationJSON? RequestBodyPostJSONDataTypesFloat32200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesFloat32ResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.cs
new file mode 100755
index 000000000..5ee8c3e80
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesFloat32ResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesFloat32ResponseBody
+ {
+
+ [JsonProperty("json")]
+ public double Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.cs
index d8e57367e..7062b5a51 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesInt32Response.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesInt32Response
///
/// OK
///
- public RequestBodyPostJSONDataTypesInt32200ApplicationJSON? RequestBodyPostJSONDataTypesInt32200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesInt32ResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesInt32ResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesInt32ResponseBody.cs
new file mode 100755
index 000000000..f038e547e
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesInt32ResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesInt32ResponseBody
+ {
+
+ [JsonProperty("json")]
+ public int Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.cs
index 7b5804b7c..acd3e99d1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesIntegerResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesInteger200ApplicationJSON? RequestBodyPostJSONDataTypesInteger200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesIntegerResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponseBody.cs
new file mode 100755
index 000000000..68d09dead
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesIntegerResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesIntegerResponseBody
+ {
+
+ [JsonProperty("json")]
+ public long Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.cs
index 39c30afb1..e5554e6f2 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesMapBigIntStrResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSON? RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesMapBigIntStrResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.cs
new file mode 100755
index 000000000..65d25528a
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapBigIntStrResponseBody.cs
@@ -0,0 +1,29 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+ using System.Numerics;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesMapBigIntStrResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ public Dictionary Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.cs
index 515bfecce..43965ee0d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesMapDateTimeResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSON? RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesMapDateTimeResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.cs
new file mode 100755
index 000000000..fedea951c
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDateTimeResponseBody.cs
@@ -0,0 +1,29 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+ using System;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesMapDateTimeResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ public Dictionary Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.cs
index 40d53459e..1973436c3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesMapDecimalResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSON? RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesMapDecimalResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.cs
new file mode 100755
index 000000000..e2968fdee
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesMapDecimalResponseBody.cs
@@ -0,0 +1,28 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesMapDecimalResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+
+ [JsonProperty("json")]
+ public Dictionary Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.cs
index 2fac100e2..2274c089c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesNumberResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesNumberResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesNumber200ApplicationJSON? RequestBodyPostJSONDataTypesNumber200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesNumberResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesNumberResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesNumberResponseBody.cs
new file mode 100755
index 000000000..508591f5f
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesNumberResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesNumberResponseBody
+ {
+
+ [JsonProperty("json")]
+ public double Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.cs
index db6913ea3..7d47d360e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesStringResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostJsonDataTypesStringResponse
///
/// OK
///
- public RequestBodyPostJSONDataTypesString200ApplicationJSON? RequestBodyPostJSONDataTypesString200ApplicationJSONObject { get; set; }
+ public RequestBodyPostJsonDataTypesStringResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesStringResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesStringResponseBody.cs
new file mode 100755
index 000000000..a697dfd34
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostJsonDataTypesStringResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostJsonDataTypesStringResponseBody
+ {
+
+ [JsonProperty("json")]
+ public string Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.cs
index a501db0ab..df74f066d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredRes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.cs
index 70548d7f1..8ca093992 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesComponentFilteredResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.cs
new file mode 100755
index 000000000..2a7c929b2
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRequestBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPostMultipleContentTypesInlineFilteredRequestBody
+ {
+
+ [JsonProperty("bool")]
+ public bool Bool { get; set; } = default!;
+
+ [JsonProperty("num")]
+ public double Num { get; set; } = default!;
+
+ [JsonProperty("str")]
+ public string Str { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.cs
index b3e96db06..3d1fb9a35 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.cs
index e90a06b35..85471bfde 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesInlineFilteredResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.cs
new file mode 100755
index 000000000..fcc058b6d
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRequestBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class RequestBodyPostMultipleContentTypesSplitFormRequestBody
+ {
+
+ [SpeakeasyMetadata("form:name=bool3")]
+ public bool Bool3 { get; set; } = default!;
+
+ [SpeakeasyMetadata("form:name=num3")]
+ public double Num3 { get; set; } = default!;
+
+ [SpeakeasyMetadata("form:name=str3")]
+ public string Str3 { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRes.cs
index 5faa02a55..94062c8ff 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormResponse.cs
index 2f5d428ae..e600e667a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitFormResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.cs
new file mode 100755
index 000000000..bba829c11
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRequestBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPostMultipleContentTypesSplitJsonRequestBody
+ {
+
+ [JsonProperty("bool")]
+ public bool Bool { get; set; } = default!;
+
+ [JsonProperty("num")]
+ public double Num { get; set; } = default!;
+
+ [JsonProperty("str")]
+ public string Str { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRes.cs
index 731cc030d..35f668b69 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.cs
index 100b1c3aa..d403fc02d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitJsonResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.cs
new file mode 100755
index 000000000..22b3772f1
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRequestBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class RequestBodyPostMultipleContentTypesSplitMultipartRequestBody
+ {
+
+ [SpeakeasyMetadata("multipartForm:name=bool2")]
+ public bool Bool2 { get; set; } = default!;
+
+ [SpeakeasyMetadata("multipartForm:name=num2")]
+ public double Num2 { get; set; } = default!;
+
+ [SpeakeasyMetadata("multipartForm:name=str2")]
+ public string Str2 { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.cs
index 8f9d48858..72d960d20 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.cs
index 4710a1d2b..b0a8edeb8 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitMultipartResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.cs
similarity index 80%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.cs
index 3cf785276..658c88eb5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequest.cs
@@ -8,15 +8,15 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class RequestBodyPostMultipleContentTypesSplitParamFormRequest
{
[SpeakeasyMetadata("request:mediaType=application/x-www-form-urlencoded")]
- public RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded RequestBody { get; set; } = default!;
+ public RequestBodyPostMultipleContentTypesSplitParamFormRequestBody RequestBody { get; set; } = default!;
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=paramStr")]
public string ParamStr { get; set; } = default!;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.cs
new file mode 100755
index 000000000..ddbe9e4c3
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRequestBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class RequestBodyPostMultipleContentTypesSplitParamFormRequestBody
+ {
+
+ [SpeakeasyMetadata("form:name=bool3")]
+ public bool Bool3 { get; set; } = default!;
+
+ [SpeakeasyMetadata("form:name=num3")]
+ public double Num3 { get; set; } = default!;
+
+ [SpeakeasyMetadata("form:name=str3")]
+ public string Str3 { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.cs
index 27e4f6dfb..5a76e1358 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.cs
index 4f3a0cc36..d11ec6463 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamFormResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.cs
similarity index 80%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.cs
index d5c668c44..bddad7a90 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequest.cs
@@ -8,15 +8,15 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class RequestBodyPostMultipleContentTypesSplitParamJsonRequest
{
[SpeakeasyMetadata("request:mediaType=application/json")]
- public RequestBodyPostMultipleContentTypesSplitParamApplicationJSON RequestBody { get; set; } = default!;
+ public RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody RequestBody { get; set; } = default!;
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=paramStr")]
public string ParamStr { get; set; } = default!;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.cs
new file mode 100755
index 000000000..f048a3563
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody
+ {
+
+ [JsonProperty("bool")]
+ public bool Bool { get; set; } = default!;
+
+ [JsonProperty("num")]
+ public double Num { get; set; } = default!;
+
+ [JsonProperty("str")]
+ public string Str { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.cs
index 2661e65fc..c5d5ba579 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.cs
index acaacc023..1df8751c6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamJsonResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.cs
similarity index 87%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.cs
index 8ec36426a..d53ff4869 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequest.cs
@@ -8,15 +8,15 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class RequestBodyPostMultipleContentTypesSplitParamMultipartRequest
{
[SpeakeasyMetadata("request:mediaType=multipart/form-data")]
- public RequestBodyPostMultipleContentTypesSplitParamMultipartFormData RequestBody { get; set; } = default!;
+ public RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody RequestBody { get; set; } = default!;
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=paramStr")]
public string ParamStr { get; set; } = default!;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.cs
new file mode 100755
index 000000000..4347652f1
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Openapi.Utils;
+
+ public class RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody
+ {
+
+ [SpeakeasyMetadata("multipartForm:name=bool2")]
+ public bool Bool2 { get; set; } = default!;
+
+ [SpeakeasyMetadata("multipartForm:name=num2")]
+ public double Num2 { get; set; } = default!;
+
+ [SpeakeasyMetadata("multipartForm:name=str2")]
+ public string Str2 { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.cs
index e7e87c18e..dbb585653 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.cs
index 7338ceb3c..0b6d66b28 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostMultipleContentTypesSplitParamMultipartResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.cs
similarity index 84%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.cs
index f9c0e4d29..5304c4b45 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostNotNullableNotRequiredStringBodyResponse
///
/// OK
///
- public RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSON? RequestBodyPostNotNullableNotRequiredStringBody200ApplicationJSONObject { get; set; }
+ public RequestBodyPostNotNullableNotRequiredStringBodyResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.cs
new file mode 100755
index 000000000..a0b766f28
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNotNullableNotRequiredStringBodyResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostNotNullableNotRequiredStringBodyResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullArrayResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullArrayResponse.cs
similarity index 87%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullArrayResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullArrayResponse.cs
index 2546c63d2..6f7f882f6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullArrayResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullArrayResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostNullArrayResponse
///
/// OK
///
- public RequestBodyPostNullArray200ApplicationJSON? RequestBodyPostNullArray200ApplicationJSONObject { get; set; }
+ public RequestBodyPostNullArrayResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullArrayResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullArrayResponseBody.cs
new file mode 100755
index 000000000..eeb1ace6c
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullArrayResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostNullArrayResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullDictionaryResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullDictionaryResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullDictionaryResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullDictionaryResponse.cs
index 36d90c895..4ac43ed76 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullDictionaryResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullDictionaryResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostNullDictionaryResponse
///
/// OK
///
- public RequestBodyPostNullDictionary200ApplicationJSON? RequestBodyPostNullDictionary200ApplicationJSONObject { get; set; }
+ public RequestBodyPostNullDictionaryResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullDictionaryResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullDictionaryResponseBody.cs
new file mode 100755
index 000000000..cee478945
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullDictionaryResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostNullDictionaryResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.cs
index 8cfb3913b..0fd15e12f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostNullableNotRequiredStringBodyResponse
///
/// OK
///
- public RequestBodyPostNullableNotRequiredStringBody200ApplicationJSON? RequestBodyPostNullableNotRequiredStringBody200ApplicationJSONObject { get; set; }
+ public RequestBodyPostNullableNotRequiredStringBodyResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.cs
new file mode 100755
index 000000000..476c183b5
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableNotRequiredStringBodyResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostNullableNotRequiredStringBodyResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.cs
index 5854e100b..611351d61 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class RequestBodyPostNullableRequiredStringBodyResponse
///
/// OK
///
- public RequestBodyPostNullableRequiredStringBody200ApplicationJSON? RequestBodyPostNullableRequiredStringBody200ApplicationJSONObject { get; set; }
+ public RequestBodyPostNullableRequiredStringBodyResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponseBody.cs
new file mode 100755
index 000000000..b6fb1d732
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPostNullableRequiredStringBodyResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// OK
+ ///
+ public class RequestBodyPostNullableRequiredStringBodyResponseBody
+ {
+
+ [JsonProperty("data")]
+ public string Data { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesRes.cs
index d43c6e7c9..a9c2e7f9a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesResponse.cs
index 420f3e987..528ad8e2e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsArgs.cs
new file mode 100755
index 000000000..915a13d4a
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsArgs.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPutBytesWithParamsArgs
+ {
+
+ [JsonProperty("queryStringParam")]
+ public string QueryStringParam { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsRequest.cs
index 69040bb2f..171210ecb 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class RequestBodyPutBytesWithParamsRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsRes.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsRes.cs
index 65c098c97..426d32a62 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,7 +19,7 @@ public class RequestBodyPutBytesWithParamsRes
{
[JsonProperty("args")]
- public RequestBodyPutBytesWithParamsResArgs Args { get; set; } = default!;
+ public RequestBodyPutBytesWithParamsArgs Args { get; set; } = default!;
[JsonProperty("data")]
public string Data { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsResponse.cs
index 7853f5311..c0b252826 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutBytesWithParamsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutBytesWithParamsResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDeepForm.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDeepForm.cs
new file mode 100755
index 000000000..3cbb16e0e
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDeepForm.cs
@@ -0,0 +1,39 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPutMultipartDeepForm
+ {
+
+ [JsonProperty("arr")]
+ public string Arr { get; set; } = default!;
+
+ [JsonProperty("bool")]
+ public string Bool { get; set; } = default!;
+
+ [JsonProperty("int")]
+ public string Int { get; set; } = default!;
+
+ [JsonProperty("map")]
+ public string Map { get; set; } = default!;
+
+ [JsonProperty("num")]
+ public string Num { get; set; } = default!;
+
+ [JsonProperty("obj")]
+ public string Obj { get; set; } = default!;
+
+ [JsonProperty("str")]
+ public string Str { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDeepRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDeepRes.cs
similarity index 83%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDeepRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDeepRes.cs
index a075ec156..9329fec33 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDeepRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDeepRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,6 +19,6 @@ public class RequestBodyPutMultipartDeepRes
{
[JsonProperty("form")]
- public RequestBodyPutMultipartDeepResForm Form { get; set; } = default!;
+ public RequestBodyPutMultipartDeepForm Form { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDeepResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDeepResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDeepResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDeepResponse.cs
index 7b7b642b8..ea2924b48 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDeepResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDeepResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.cs
similarity index 76%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.cs
index a5b1f82ac..4e7ad3bc3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameRequestBody.cs
@@ -8,14 +8,14 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class RequestBodyPutMultipartDifferentFileNameRequestBody
{
[SpeakeasyMetadata("multipartForm:file")]
- public RequestBodyPutMultipartDifferentFileNameRequestBodyDifferentFileName? DifferentFileName { get; set; }
+ public DifferentFileName? DifferentFileName { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameRes.cs
index 431acf290..08fda8ea3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameResponse.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameResponse.cs
index f15afc851..ab1068bd1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartDifferentFileNameResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartDifferentFileNameResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartFileRequestBody.cs
similarity index 80%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartFileRequestBody.cs
index 7b8d4829e..69074ef32 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartFileRequestBody.cs
@@ -8,14 +8,14 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class RequestBodyPutMultipartFileRequestBody
{
[SpeakeasyMetadata("multipartForm:file")]
- public RequestBodyPutMultipartFileRequestBodyFile? File { get; set; }
+ public File? File { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartFileRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartFileRes.cs
index 3615c90ca..cb55533b3 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartFileRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartFileResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartFileResponse.cs
index 90c3787a1..14e18921b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartFileResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartFileResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleForm.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleForm.cs
new file mode 100755
index 000000000..015dbe694
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleForm.cs
@@ -0,0 +1,60 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPutMultipartSimpleForm
+ {
+
+ [JsonProperty("any")]
+ public string Any { get; set; } = default!;
+
+ [JsonProperty("bool")]
+ public string Bool { get; set; } = default!;
+
+ [JsonProperty("boolOpt")]
+ public string? BoolOpt { get; set; }
+
+ [JsonProperty("date")]
+ public string Date { get; set; } = default!;
+
+ [JsonProperty("dateTime")]
+ public string DateTime { get; set; } = default!;
+
+ [JsonProperty("enum")]
+ public string Enum { get; set; } = default!;
+
+ [JsonProperty("float32")]
+ public string Float32 { get; set; } = default!;
+
+ [JsonProperty("int")]
+ public string Int { get; set; } = default!;
+
+ [JsonProperty("int32")]
+ public string Int32 { get; set; } = default!;
+
+ [JsonProperty("intOptNull")]
+ public string? IntOptNull { get; set; }
+
+ [JsonProperty("num")]
+ public string Num { get; set; } = default!;
+
+ [JsonProperty("numOptNull")]
+ public string? NumOptNull { get; set; }
+
+ [JsonProperty("str")]
+ public string Str { get; set; } = default!;
+
+ [JsonProperty("strOpt")]
+ public string? StrOpt { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleHeaders.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleHeaders.cs
new file mode 100755
index 000000000..a8623a7f1
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleHeaders.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPutMultipartSimpleHeaders
+ {
+
+ [JsonProperty("Content-Type")]
+ public string ContentType { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleRes.cs
similarity index 75%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleRes.cs
index 73423695d..60b72a9d6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,9 +19,9 @@ public class RequestBodyPutMultipartSimpleRes
{
[JsonProperty("form")]
- public RequestBodyPutMultipartSimpleResForm Form { get; set; } = default!;
+ public RequestBodyPutMultipartSimpleForm Form { get; set; } = default!;
[JsonProperty("headers")]
- public RequestBodyPutMultipartSimpleResHeaders Headers { get; set; } = default!;
+ public RequestBodyPutMultipartSimpleHeaders Headers { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleResponse.cs
index 96454b011..d4f5a1a55 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutMultipartSimpleResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutMultipartSimpleResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringRes.cs
index d87f09757..ffee04cf5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringResponse.cs
index 829166a1c..cfcd69c44 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsArgs.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsArgs.cs
new file mode 100755
index 000000000..1cf479040
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsArgs.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ public class RequestBodyPutStringWithParamsArgs
+ {
+
+ [JsonProperty("queryStringParam")]
+ public string QueryStringParam { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsRequest.cs
index e61e8627a..d652fdbd6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class RequestBodyPutStringWithParamsRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsRes.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsRes.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsRes.cs
index 6e028e89a..f12eec790 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
@@ -19,7 +19,7 @@ public class RequestBodyPutStringWithParamsRes
{
[JsonProperty("args")]
- public RequestBodyPutStringWithParamsResArgs Args { get; set; } = default!;
+ public RequestBodyPutStringWithParamsArgs Args { get; set; } = default!;
[JsonProperty("data")]
public string Data { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsResponse.cs
index ba2cce042..3df704401 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyPutStringWithParamsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyPutStringWithParamsResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyReadAndWriteResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadAndWriteResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyReadAndWriteResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadAndWriteResponse.cs
index a0cfae3bb..8ed3a1833 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyReadAndWriteResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadAndWriteResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyReadOnlyInputResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadOnlyInputResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyReadOnlyInputResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadOnlyInputResponse.cs
index a2d43a5d8..bc2770d6a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyReadOnlyInputResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadOnlyInputResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyReadOnlyUnionResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadOnlyUnionResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyReadOnlyUnionResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadOnlyUnionResponse.cs
index d1a6cb48c..d808c313d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyReadOnlyUnionResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadOnlyUnionResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyReadWriteOnlyUnionResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadWriteOnlyUnionResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyReadWriteOnlyUnionResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadWriteOnlyUnionResponse.cs
index 68a055b5a..63e812d82 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyReadWriteOnlyUnionResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyReadWriteOnlyUnionResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyWriteOnlyOutputResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyWriteOnlyOutputResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyWriteOnlyOutputResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyWriteOnlyOutputResponse.cs
index a2ecdad36..30b8d02d1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyWriteOnlyOutputResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyWriteOnlyOutputResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyWriteOnlyResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyWriteOnlyResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyWriteOnlyResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyWriteOnlyResponse.cs
index 80689cc79..c99479c2d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyWriteOnlyResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyWriteOnlyResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RequestBodyWriteOnlyUnionResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyWriteOnlyUnionResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RequestBodyWriteOnlyUnionResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RequestBodyWriteOnlyUnionResponse.cs
index 175c75a4f..2802fdb1b 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RequestBodyWriteOnlyUnionResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequestBodyWriteOnlyUnionResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/RequiredObj.cs b/csharp-client-sdk/Openapi/Models/Operations/RequiredObj.cs
new file mode 100755
index 000000000..d148c3058
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/RequiredObj.cs
@@ -0,0 +1,17 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+
+ public class RequiredObj
+ {
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.cs
index 151b2c262..1e0be0312 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class ResponseBodyAdditionalPropertiesComplexNumbersPostResponse
///
/// OK
///
- public ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSON? ResponseBodyAdditionalPropertiesComplexNumbersPost200ApplicationJSONObject { get; set; }
+ public ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.cs
new file mode 100755
index 000000000..50df96e3c
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody.cs
@@ -0,0 +1,26 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+ using System.Numerics;
+
+ ///
+ /// OK
+ ///
+ public class ResponseBodyAdditionalPropertiesComplexNumbersPostResponseBody
+ {
+
+ [JsonProperty("json")]
+ public Dictionary Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.cs
index 20964cfc4..37b1693ab 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class ResponseBodyAdditionalPropertiesDatePostResponse
///
/// OK
///
- public ResponseBodyAdditionalPropertiesDatePost200ApplicationJSON? ResponseBodyAdditionalPropertiesDatePost200ApplicationJSONObject { get; set; }
+ public ResponseBodyAdditionalPropertiesDatePostResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.cs
new file mode 100755
index 000000000..dd7445ced
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesDatePostResponseBody.cs
@@ -0,0 +1,26 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using NodaTime;
+ using System.Collections.Generic;
+
+ ///
+ /// OK
+ ///
+ public class ResponseBodyAdditionalPropertiesDatePostResponseBody
+ {
+
+ [JsonProperty("json")]
+ public Dictionary Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.cs
index c7a98cfce..488bb62dc 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class ResponseBodyAdditionalPropertiesObjectPostResponse
///
/// OK
///
- public ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSON? ResponseBodyAdditionalPropertiesObjectPost200ApplicationJSONObject { get; set; }
+ public ResponseBodyAdditionalPropertiesObjectPostResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.cs
new file mode 100755
index 000000000..b8824a875
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesObjectPostResponseBody.cs
@@ -0,0 +1,26 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+ using System.Collections.Generic;
+
+ ///
+ /// OK
+ ///
+ public class ResponseBodyAdditionalPropertiesObjectPostResponseBody
+ {
+
+ [JsonProperty("json")]
+ public Dictionary Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.cs
index 20c9cc7b0..73bf51fed 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class ResponseBodyAdditionalPropertiesPostResponse
///
/// OK
///
- public ResponseBodyAdditionalPropertiesPost200ApplicationJSON? ResponseBodyAdditionalPropertiesPost200ApplicationJSONObject { get; set; }
+ public ResponseBodyAdditionalPropertiesPostResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesPostResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesPostResponseBody.cs
new file mode 100755
index 000000000..2cc1cd565
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyAdditionalPropertiesPostResponseBody.cs
@@ -0,0 +1,25 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+
+ ///
+ /// OK
+ ///
+ public class ResponseBodyAdditionalPropertiesPostResponseBody
+ {
+
+ [JsonProperty("json")]
+ public Dictionary Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyBytesGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyBytesGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyBytesGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyBytesGetResponse.cs
index b3dea3d7a..13d11a5fa 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyBytesGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyBytesGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyEmptyWithHeadersRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyEmptyWithHeadersRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyEmptyWithHeadersRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyEmptyWithHeadersRequest.cs
index 25f45d3d0..ec578164c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyEmptyWithHeadersRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyEmptyWithHeadersRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class ResponseBodyEmptyWithHeadersRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyEmptyWithHeadersResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyEmptyWithHeadersResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyEmptyWithHeadersResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyEmptyWithHeadersResponse.cs
index 87b5c5bb8..03a44dd80 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyEmptyWithHeadersResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyEmptyWithHeadersResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Collections.Generic;
using System.Net.Http;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyJsonGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyJsonGetResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyJsonGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyJsonGetResponse.cs
index b82e301a8..16d611c0d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyJsonGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyJsonGetResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyOptionalGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyOptionalGetResponse.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyOptionalGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyOptionalGetResponse.cs
index feeae21d1..6f078b1f0 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyOptionalGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyOptionalGetResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
@@ -35,7 +35,7 @@ public class ResponseBodyOptionalGetResponse
///
/// OK
///
- public string? ResponseBodyOptionalGet200TextPlainString { get; set; }
+ public string? Res { get; set; }
///
/// OK
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyReadOnlyResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyReadOnlyResponse.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyReadOnlyResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyReadOnlyResponse.cs
index 09b7627ff..f047af38a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyReadOnlyResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyReadOnlyResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyStringGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyStringGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyStringGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyStringGetResponse.cs
index dabc3e4fc..339544792 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyStringGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyStringGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyXmlGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyXmlGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyXmlGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyXmlGetResponse.cs
index 53e5b5579..408d22ef8 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyXmlGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyXmlGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.cs
similarity index 85%
rename from csharp-client-sdk/SDK/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.cs
index 39a5197e7..768bea6e4 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class ResponseBodyZeroValueComplexTypePtrsPostResponse
///
/// OK
///
- public ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSON? ResponseBodyZeroValueComplexTypePtrsPost200ApplicationJSONObject { get; set; }
+ public ResponseBodyZeroValueComplexTypePtrsPostResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.cs
new file mode 100755
index 000000000..5294ef211
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/ResponseBodyZeroValueComplexTypePtrsPostResponseBody.cs
@@ -0,0 +1,25 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+
+ ///
+ /// OK
+ ///
+ public class ResponseBodyZeroValueComplexTypePtrsPostResponseBody
+ {
+
+ [JsonProperty("json")]
+ public ObjWithZeroValueComplexTypePtrs Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/RetriesGetRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/RetriesGetRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/RetriesGetRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RetriesGetRequest.cs
index 30d22242e..3362a0646 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RetriesGetRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RetriesGetRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class RetriesGetRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/RetriesGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/RetriesGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/RetriesGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RetriesGetResponse.cs
index 1b5c51445..c160bda16 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RetriesGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RetriesGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/RetriesGetRetries.cs b/csharp-client-sdk/Openapi/Models/Operations/RetriesGetRetries.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/RetriesGetRetries.cs
rename to csharp-client-sdk/Openapi/Models/Operations/RetriesGetRetries.cs
index 0bae8b038..a1dea19d7 100755
--- a/csharp-client-sdk/SDK/Models/Operations/RetriesGetRetries.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/RetriesGetRetries.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/SelectGlobalServerResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/SelectGlobalServerResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/SelectGlobalServerResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SelectGlobalServerResponse.cs
index ee260189f..f8679c393 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SelectGlobalServerResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SelectGlobalServerResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Collections.Generic;
using System.Net.Http;
diff --git a/csharp-client-sdk/SDK/Models/Operations/SelectServerWithIDResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/SelectServerWithIDResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/SelectServerWithIDResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SelectServerWithIDResponse.cs
index ecc563bd8..48f4293ce 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SelectServerWithIDResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SelectServerWithIDResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ServerWithProtocolTemplateResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ServerWithProtocolTemplateResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ServerWithProtocolTemplateResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ServerWithProtocolTemplateResponse.cs
index 82a18616a..29b4abaab 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ServerWithProtocolTemplateResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ServerWithProtocolTemplateResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ServerWithTemplatesGlobalResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ServerWithTemplatesGlobalResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ServerWithTemplatesGlobalResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ServerWithTemplatesGlobalResponse.cs
index 05f1fdb34..bf1fc34cb 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ServerWithTemplatesGlobalResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ServerWithTemplatesGlobalResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ServerWithTemplatesResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ServerWithTemplatesResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ServerWithTemplatesResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ServerWithTemplatesResponse.cs
index a45866535..1d6d55679 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ServerWithTemplatesResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ServerWithTemplatesResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/ServersByIDWithTemplatesResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/ServersByIDWithTemplatesResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/ServersByIDWithTemplatesResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/ServersByIDWithTemplatesResponse.cs
index dc6ed2860..b518eb6cb 100755
--- a/csharp-client-sdk/SDK/Models/Operations/ServersByIDWithTemplatesResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/ServersByIDWithTemplatesResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterArraysRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterArraysRequest.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterArraysRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterArraysRequest.cs
index 2932ea945..794641f9e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterArraysRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterArraysRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
using System.Collections.Generic;
public class SimplePathParameterArraysRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterArraysRes.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterArraysRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterArraysRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterArraysRes.cs
index c2c5ae715..d15f5fd56 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterArraysRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterArraysRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterArraysResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterArraysResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterArraysResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterArraysResponse.cs
index 670d919f4..efb7ac4f6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterArraysResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterArraysResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterMapsRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterMapsRequest.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterMapsRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterMapsRequest.cs
index 72017e85e..3f01ba324 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterMapsRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterMapsRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
using System.Collections.Generic;
public class SimplePathParameterMapsRequest
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterMapsRes.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterMapsRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterMapsRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterMapsRes.cs
index 31112febd..8ed55f684 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterMapsRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterMapsRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterMapsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterMapsResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterMapsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterMapsResponse.cs
index 7713234a0..53e0eb9ac 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterMapsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterMapsResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterObjectsRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterObjectsRequest.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterObjectsRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterObjectsRequest.cs
index 892891439..339198e24 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterObjectsRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterObjectsRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
public class SimplePathParameterObjectsRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterObjectsRes.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterObjectsRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterObjectsRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterObjectsRes.cs
index d9f915f28..715714edb 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterObjectsRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterObjectsRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterObjectsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterObjectsResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterObjectsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterObjectsResponse.cs
index 448fbc230..5c0a9356c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterObjectsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterObjectsResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterPrimitivesRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterPrimitivesRequest.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterPrimitivesRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterPrimitivesRequest.cs
index 664071096..c45172d4e 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterPrimitivesRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterPrimitivesRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class SimplePathParameterPrimitivesRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterPrimitivesRes.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterPrimitivesRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterPrimitivesRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterPrimitivesRes.cs
index a339f184d..aa2176766 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterPrimitivesRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterPrimitivesRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterPrimitivesResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterPrimitivesResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/SimplePathParameterPrimitivesResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterPrimitivesResponse.cs
index e4518d6c8..222051426 100755
--- a/csharp-client-sdk/SDK/Models/Operations/SimplePathParameterPrimitivesResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/SimplePathParameterPrimitivesResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/StatusGetErrorRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/StatusGetErrorRequest.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/StatusGetErrorRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/StatusGetErrorRequest.cs
index 31600f890..768b8469f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/StatusGetErrorRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/StatusGetErrorRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class StatusGetErrorRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/StatusGetErrorResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/StatusGetErrorResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/StatusGetErrorResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/StatusGetErrorResponse.cs
index 420e5ea78..6f6ea395a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/StatusGetErrorResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/StatusGetErrorResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/StatusGetXSpeakeasyErrorsRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/StatusGetXSpeakeasyErrorsRequest.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/StatusGetXSpeakeasyErrorsRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/StatusGetXSpeakeasyErrorsRequest.cs
index 5538b8106..103fea28f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/StatusGetXSpeakeasyErrorsRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/StatusGetXSpeakeasyErrorsRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class StatusGetXSpeakeasyErrorsRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/StatusGetXSpeakeasyErrorsResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/StatusGetXSpeakeasyErrorsResponse.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Operations/StatusGetXSpeakeasyErrorsResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/StatusGetXSpeakeasyErrorsResponse.cs
index 9aa4af75b..099c85dda 100755
--- a/csharp-client-sdk/SDK/Models/Operations/StatusGetXSpeakeasyErrorsResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/StatusGetXSpeakeasyErrorsResponse.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
using System.Net.Http;
using System;
@@ -40,6 +40,6 @@ public class StatusGetXSpeakeasyErrorsResponse
///
/// Not Implemented
///
- public StatusGetXSpeakeasyErrors501ApplicationJSON? StatusGetXSpeakeasyErrors501ApplicationJSONObject { get; set; }
+ public StatusGetXSpeakeasyErrorsResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/StatusGetXSpeakeasyErrorsResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/StatusGetXSpeakeasyErrorsResponseBody.cs
new file mode 100755
index 000000000..6451caf9e
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/StatusGetXSpeakeasyErrorsResponseBody.cs
@@ -0,0 +1,31 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+
+ ///
+ /// Not Implemented
+ ///
+ public class StatusGetXSpeakeasyErrorsResponseBody
+ {
+
+ [JsonProperty("code")]
+ public string? Code { get; set; }
+
+ [JsonProperty("message")]
+ public string? Message { get; set; }
+
+ [JsonProperty("type")]
+ public ErrorType? Type { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/StronglyTypedOneOfPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/StronglyTypedOneOfPostRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/StronglyTypedOneOfPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/StronglyTypedOneOfPostRes.cs
index 8e69307a4..650d592f6 100755
--- a/csharp-client-sdk/SDK/Models/Operations/StronglyTypedOneOfPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/StronglyTypedOneOfPostRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/StronglyTypedOneOfPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/StronglyTypedOneOfPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/StronglyTypedOneOfPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/StronglyTypedOneOfPostResponse.cs
index dcc979e29..baa1bb610 100755
--- a/csharp-client-sdk/SDK/Models/Operations/StronglyTypedOneOfPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/StronglyTypedOneOfPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetRequest.cs
similarity index 91%
rename from csharp-client-sdk/SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetRequest.cs
index 17b606514..227775c96 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class TelemetrySpeakeasyUserAgentGetRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetRes.cs b/csharp-client-sdk/Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetRes.cs
index 63cc69443..f5417ab48 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetResponse.cs
index 30de7fa2c..42b2807bc 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TelemetrySpeakeasyUserAgentGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TelemetrySpeakeasyUserAgentGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/TelemetryUserAgentGetRes.cs b/csharp-client-sdk/Openapi/Models/Operations/TelemetryUserAgentGetRes.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/TelemetryUserAgentGetRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TelemetryUserAgentGetRes.cs
index d31543fe5..931e70860 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TelemetryUserAgentGetRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TelemetryUserAgentGetRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Operations/TelemetryUserAgentGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/TelemetryUserAgentGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/TelemetryUserAgentGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TelemetryUserAgentGetResponse.cs
index 519553185..adc0d318a 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TelemetryUserAgentGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TelemetryUserAgentGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/TypedObjectNullableOneOfPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/TypedObjectNullableOneOfPostRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/TypedObjectNullableOneOfPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TypedObjectNullableOneOfPostRes.cs
index e91b7edca..eaa0bf278 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TypedObjectNullableOneOfPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TypedObjectNullableOneOfPostRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/TypedObjectNullableOneOfPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/TypedObjectNullableOneOfPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/TypedObjectNullableOneOfPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TypedObjectNullableOneOfPostResponse.cs
index c16084d80..4eab8d2a1 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TypedObjectNullableOneOfPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TypedObjectNullableOneOfPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/TypedObjectOneOfPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/TypedObjectOneOfPostRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/TypedObjectOneOfPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TypedObjectOneOfPostRes.cs
index 9ce45b212..f9e7d646d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TypedObjectOneOfPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TypedObjectOneOfPostRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/TypedObjectOneOfPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/TypedObjectOneOfPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/TypedObjectOneOfPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TypedObjectOneOfPostResponse.cs
index 584f3babd..03fdbdc38 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TypedObjectOneOfPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TypedObjectOneOfPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/TypedParameterGenerationGetRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/TypedParameterGenerationGetRequest.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/TypedParameterGenerationGetRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TypedParameterGenerationGetRequest.cs
index c200e2efb..8c1c74927 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TypedParameterGenerationGetRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TypedParameterGenerationGetRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using NodaTime;
- using SDK.Utils;
+ using Openapi.Utils;
using System.Numerics;
public class TypedParameterGenerationGetRequest
@@ -27,6 +27,6 @@ public class TypedParameterGenerationGetRequest
public decimal? Decimal { get; set; }
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=obj")]
- public TypedParameterGenerationGetObj? Obj { get; set; }
+ public Obj? Obj { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/TypedParameterGenerationGetResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/TypedParameterGenerationGetResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/TypedParameterGenerationGetResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/TypedParameterGenerationGetResponse.cs
index 3f631ff0c..0126538ac 100755
--- a/csharp-client-sdk/SDK/Models/Operations/TypedParameterGenerationGetResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/TypedParameterGenerationGetResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/UnionBigIntDecimalRes.cs b/csharp-client-sdk/Openapi/Models/Operations/UnionBigIntDecimalRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/UnionBigIntDecimalRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UnionBigIntDecimalRes.cs
index 258adb339..f1794001d 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UnionBigIntDecimalRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UnionBigIntDecimalRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/UnionBigIntDecimalResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/UnionBigIntDecimalResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/UnionBigIntDecimalResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UnionBigIntDecimalResponse.cs
index ceb1ee27f..aefa36ff2 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UnionBigIntDecimalResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UnionBigIntDecimalResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/UnionDateNullRes.cs b/csharp-client-sdk/Openapi/Models/Operations/UnionDateNullRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/UnionDateNullRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UnionDateNullRes.cs
index ddc280020..187afae72 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UnionDateNullRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UnionDateNullRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using NodaTime;
diff --git a/csharp-client-sdk/SDK/Models/Operations/UnionDateNullResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/UnionDateNullResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/UnionDateNullResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UnionDateNullResponse.cs
index a7a0951e3..b022026be 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UnionDateNullResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UnionDateNullResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/UnionDateTimeBigIntRes.cs b/csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeBigIntRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/UnionDateTimeBigIntRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeBigIntRes.cs
index 28c3cd53a..7885ec24f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UnionDateTimeBigIntRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeBigIntRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/UnionDateTimeBigIntResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeBigIntResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/UnionDateTimeBigIntResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeBigIntResponse.cs
index 8b4102cde..53112f375 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UnionDateTimeBigIntResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeBigIntResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/UnionDateTimeNullRes.cs b/csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeNullRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/UnionDateTimeNullRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeNullRes.cs
index 7878de93d..b454b4e56 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UnionDateTimeNullRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeNullRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/UnionDateTimeNullResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeNullResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/UnionDateTimeNullResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeNullResponse.cs
index 95c1df7aa..508e68223 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UnionDateTimeNullResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UnionDateTimeNullResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Operations/UpdateResourceRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/UpdateResourceRequest.cs
similarity index 90%
rename from csharp-client-sdk/SDK/Models/Operations/UpdateResourceRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UpdateResourceRequest.cs
index d1d7edcef..88e08b12f 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UpdateResourceRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UpdateResourceRequest.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class UpdateResourceRequest
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/UpdateResourceResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/UpdateResourceResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/UpdateResourceResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UpdateResourceResponse.cs
index 18d5beee6..633421b25 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UpdateResourceResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UpdateResourceResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostJson.cs b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostJson.cs
new file mode 100755
index 000000000..1a4cc2f8a
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostJson.cs
@@ -0,0 +1,39 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+ using Openapi.Models.Shared;
+
+ public class UsageExamplePostJson
+ {
+
+ ///
+ /// A set of strings with format values that lead to relevant examples being generated for them
+ ///
+ [JsonProperty("fakerFormattedStrings")]
+ public FakerFormattedStrings? FakerFormattedStrings { get; set; }
+
+ ///
+ /// A set of strings with fieldnames that lead to relevant examples being generated for them
+ ///
+ [JsonProperty("fakerStrings")]
+ public FakerStrings? FakerStrings { get; set; }
+
+ ///
+ /// A simple object that uses all our supported primitive types and enums and has optional properties.
+ ///
+ /// https://docs.speakeasyapi.dev} - A link to the external docs.
+ ///
+ [JsonProperty("simpleObject")]
+ public SimpleObject? SimpleObject { get; set; }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostRequest.cs b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostRequest.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/UsageExamplePostRequest.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostRequest.cs
index ceb3988ec..15b81ae8c 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostRequest.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostRequest.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using NodaTime;
- using SDK.Utils;
+ using Openapi.Utils;
using System.Numerics;
using System;
@@ -76,7 +76,7 @@ public class UsageExamplePostRequest
/// An enum parameter
///
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=enumParameter")]
- public UsageExamplePostEnumParameter EnumParameter { get; set; } = default!;
+ public EnumParameter EnumParameter { get; set; } = default!;
///
/// A number parameter that contains a falsey example value
@@ -148,6 +148,6 @@ public class UsageExamplePostRequest
/// An enum parameter
///
[SpeakeasyMetadata("queryParam:style=form,explode=true,name=optEnumParameter")]
- public UsageExamplePostOptEnumParameter? OptEnumParameter { get; set; }
+ public OptEnumParameter? OptEnumParameter { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostRequestBody.cs b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostRequestBody.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Operations/UsageExamplePostRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostRequestBody.cs
index 15cda0e1d..61aefd5a5 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostRequestBody.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
- using SDK.Models.Shared;
+ using Openapi.Models.Shared;
///
/// A request body that contains fields with different formats for testing example generation
diff --git a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostResponse.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Operations/UsageExamplePostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostResponse.cs
index b3ba0c43f..3926228cf 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
@@ -34,6 +34,6 @@ public class UsageExamplePostResponse
///
/// A successful response that contains the simpleObject sent in the request body
///
- public UsageExamplePost200ApplicationJSON? UsageExamplePost200ApplicationJSONObject { get; set; }
+ public UsageExamplePostResponseBody? Object { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostResponseBody.cs b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostResponseBody.cs
new file mode 100755
index 000000000..599a0e47e
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostResponseBody.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Operations
+{
+ using Newtonsoft.Json;
+
+ ///
+ /// A response body that contains the simpleObject sent in the request body
+ ///
+ public class UsageExamplePostResponseBody
+ {
+
+ [JsonProperty("json")]
+ public UsageExamplePostJson Json { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostSecurity.cs b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostSecurity.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Operations/UsageExamplePostSecurity.cs
rename to csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostSecurity.cs
index 693f5277c..b4d9a1a65 100755
--- a/csharp-client-sdk/SDK/Models/Operations/UsageExamplePostSecurity.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/UsageExamplePostSecurity.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
- using SDK.Utils;
+ using Openapi.Utils;
public class UsageExamplePostSecurity
{
diff --git a/csharp-client-sdk/SDK/Models/Operations/WeaklyTypedOneOfPostRes.cs b/csharp-client-sdk/Openapi/Models/Operations/WeaklyTypedOneOfPostRes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Operations/WeaklyTypedOneOfPostRes.cs
rename to csharp-client-sdk/Openapi/Models/Operations/WeaklyTypedOneOfPostRes.cs
index 3ac6d0e5f..d0b6e9e30 100755
--- a/csharp-client-sdk/SDK/Models/Operations/WeaklyTypedOneOfPostRes.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/WeaklyTypedOneOfPostRes.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Operations/WeaklyTypedOneOfPostResponse.cs b/csharp-client-sdk/Openapi/Models/Operations/WeaklyTypedOneOfPostResponse.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Operations/WeaklyTypedOneOfPostResponse.cs
rename to csharp-client-sdk/Openapi/Models/Operations/WeaklyTypedOneOfPostResponse.cs
index 8bebce9ab..efca314ac 100755
--- a/csharp-client-sdk/SDK/Models/Operations/WeaklyTypedOneOfPostResponse.cs
+++ b/csharp-client-sdk/Openapi/Models/Operations/WeaklyTypedOneOfPostResponse.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Operations
+namespace Openapi.Models.Operations
{
using System.Net.Http;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Shared/AllOfToAllOf.cs b/csharp-client-sdk/Openapi/Models/Shared/AllOfToAllOf.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Shared/AllOfToAllOf.cs
rename to csharp-client-sdk/Openapi/Models/Shared/AllOfToAllOf.cs
index 72a985845..2913f24e3 100755
--- a/csharp-client-sdk/SDK/Models/Shared/AllOfToAllOf.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/AllOfToAllOf.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/ArrObjValue.cs b/csharp-client-sdk/Openapi/Models/Shared/ArrObjValue.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/ArrObjValue.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ArrObjValue.cs
index ac56afcc3..79baa31e0 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ArrObjValue.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ArrObjValue.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Shared/ArrObjValueCamelCase.cs b/csharp-client-sdk/Openapi/Models/Shared/ArrObjValueCamelCase.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/ArrObjValueCamelCase.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ArrObjValueCamelCase.cs
index ff5e32bb6..253a1aa91 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ArrObjValueCamelCase.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ArrObjValueCamelCase.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Shared/ArrayCircularReferenceObject.cs b/csharp-client-sdk/Openapi/Models/Shared/ArrayCircularReferenceObject.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/ArrayCircularReferenceObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ArrayCircularReferenceObject.cs
index 115bbabbd..f11d071aa 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ArrayCircularReferenceObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ArrayCircularReferenceObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Shared/AuthServiceRequestBody.cs b/csharp-client-sdk/Openapi/Models/Shared/AuthServiceRequestBody.cs
similarity index 77%
rename from csharp-client-sdk/SDK/Models/Shared/AuthServiceRequestBody.cs
rename to csharp-client-sdk/Openapi/Models/Shared/AuthServiceRequestBody.cs
index cbd6dd4c3..f7bfe79bd 100755
--- a/csharp-client-sdk/SDK/Models/Shared/AuthServiceRequestBody.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/AuthServiceRequestBody.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System.Collections.Generic;
@@ -17,9 +17,9 @@ public class AuthServiceRequestBody
{
[JsonProperty("basicAuth")]
- public AuthServiceRequestBodyBasicAuth? BasicAuth { get; set; }
+ public BasicAuth? BasicAuth { get; set; }
[JsonProperty("headerAuth")]
- public List? HeaderAuth { get; set; }
+ public List? HeaderAuth { get; set; }
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/BasicAuth.cs b/csharp-client-sdk/Openapi/Models/Shared/BasicAuth.cs
new file mode 100755
index 000000000..8b2070654
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/BasicAuth.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+
+ public class BasicAuth
+ {
+
+ [JsonProperty("password")]
+ public string Password { get; set; } = default!;
+
+ [JsonProperty("username")]
+ public string Username { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/Chocolates.cs b/csharp-client-sdk/Openapi/Models/Shared/Chocolates.cs
new file mode 100755
index 000000000..16bbdf0f5
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/Chocolates.cs
@@ -0,0 +1,21 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+
+ public class Chocolates
+ {
+
+ [JsonProperty("description")]
+ public string Description { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Shared/ComplexNumberTypes.cs b/csharp-client-sdk/Openapi/Models/Shared/ComplexNumberTypes.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Shared/ComplexNumberTypes.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ComplexNumberTypes.cs
index 9e2457c2a..a3923d5e8 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ComplexNumberTypes.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ComplexNumberTypes.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
- using SDK.Utils;
+ using Openapi.Utils;
using System.Numerics;
public class ComplexNumberTypes
diff --git a/csharp-client-sdk/Openapi/Models/Shared/ConstEnumInt.cs b/csharp-client-sdk/Openapi/Models/Shared/ConstEnumInt.cs
new file mode 100755
index 000000000..6e30a8ad4
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/ConstEnumInt.cs
@@ -0,0 +1,20 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+
+ public enum ConstEnumInt
+ {
+ One = 1,
+ Two = 2,
+ Three = 3,
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/ConstEnumStr.cs b/csharp-client-sdk/Openapi/Models/Shared/ConstEnumStr.cs
new file mode 100755
index 000000000..46999d482
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/ConstEnumStr.cs
@@ -0,0 +1,58 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+ using System;
+
+ public enum ConstEnumStr
+ {
+ [JsonProperty("one")]
+ One,
+ [JsonProperty("two")]
+ Two,
+ [JsonProperty("three")]
+ Three,
+ }
+
+ public static class ConstEnumStrExtension
+ {
+ public static string Value(this ConstEnumStr value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static ConstEnumStr ToEnum(this string value)
+ {
+ foreach(var field in typeof(ConstEnumStr).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is ConstEnumStr)
+ {
+ return (ConstEnumStr)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum ConstEnumStr");
+ }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Shared/DeepObject.cs b/csharp-client-sdk/Openapi/Models/Shared/DeepObject.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Shared/DeepObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/DeepObject.cs
index b628fce14..db27543b1 100755
--- a/csharp-client-sdk/SDK/Models/Shared/DeepObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/DeepObject.cs
@@ -8,10 +8,10 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
- using SDK.Utils;
+ using Openapi.Utils;
using System.Collections.Generic;
public class DeepObject
diff --git a/csharp-client-sdk/SDK/Models/Shared/DeepObjectCamelCase.cs b/csharp-client-sdk/Openapi/Models/Shared/DeepObjectCamelCase.cs
similarity index 98%
rename from csharp-client-sdk/SDK/Models/Shared/DeepObjectCamelCase.cs
rename to csharp-client-sdk/Openapi/Models/Shared/DeepObjectCamelCase.cs
index 94f158408..eadc37c3f 100755
--- a/csharp-client-sdk/SDK/Models/Shared/DeepObjectCamelCase.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/DeepObjectCamelCase.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/Openapi/Models/Shared/DefaultEnumInt.cs b/csharp-client-sdk/Openapi/Models/Shared/DefaultEnumInt.cs
new file mode 100755
index 000000000..c0d057d62
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/DefaultEnumInt.cs
@@ -0,0 +1,20 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+
+ public enum DefaultEnumInt
+ {
+ One = 1,
+ Two = 2,
+ Three = 3,
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/DefaultEnumStr.cs b/csharp-client-sdk/Openapi/Models/Shared/DefaultEnumStr.cs
new file mode 100755
index 000000000..ab994859f
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/DefaultEnumStr.cs
@@ -0,0 +1,58 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+ using System;
+
+ public enum DefaultEnumStr
+ {
+ [JsonProperty("one")]
+ One,
+ [JsonProperty("two")]
+ Two,
+ [JsonProperty("three")]
+ Three,
+ }
+
+ public static class DefaultEnumStrExtension
+ {
+ public static string Value(this DefaultEnumStr value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static DefaultEnumStr ToEnum(this string value)
+ {
+ foreach(var field in typeof(DefaultEnumStr).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is DefaultEnumStr)
+ {
+ return (DefaultEnumStr)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum DefaultEnumStr");
+ }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConsts.cs b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConsts.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Shared/DefaultsAndConsts.cs
rename to csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConsts.cs
index 1292f49a2..e50fd4d72 100755
--- a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConsts.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConsts.cs
@@ -8,11 +8,11 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using NodaTime;
- using SDK.Utils;
+ using Openapi.Utils;
using System.Numerics;
using System;
@@ -43,10 +43,10 @@ public class DefaultsAndConsts
public decimal ConstDecimalStr { get; set; } = default!;
[JsonProperty("constEnumInt")]
- public DefaultsAndConstsConstEnumInt ConstEnumInt { get; set; } = default!;
+ public ConstEnumInt ConstEnumInt { get; set; } = default!;
[JsonProperty("constEnumStr")]
- public DefaultsAndConstsConstEnumStr ConstEnumStr { get; set; } = default!;
+ public ConstEnumStr ConstEnumStr { get; set; } = default!;
[JsonProperty("constInt")]
public long ConstInt { get; set; } = default!;
@@ -87,10 +87,10 @@ public class DefaultsAndConsts
public decimal? DefaultDecimalStr { get; set; }
[JsonProperty("defaultEnumInt")]
- public DefaultsAndConstsDefaultEnumInt? DefaultEnumInt { get; set; }
+ public DefaultEnumInt? DefaultEnumInt { get; set; }
[JsonProperty("defaultEnumStr")]
- public DefaultsAndConstsDefaultEnumStr? DefaultEnumStr { get; set; }
+ public DefaultEnumStr? DefaultEnumStr { get; set; }
[JsonProperty("defaultInt")]
public long? DefaultInt { get; set; }
diff --git a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutput.cs b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutput.cs
similarity index 98%
rename from csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutput.cs
rename to csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutput.cs
index b225b8a5d..ac12d02da 100755
--- a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutput.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutput.cs
@@ -8,11 +8,11 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using NodaTime;
- using SDK.Utils;
+ using Openapi.Utils;
using System.Numerics;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputConstEnumInt.cs b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputConstEnumInt.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputConstEnumInt.cs
rename to csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputConstEnumInt.cs
index 1767ed0e8..ec4e6a89b 100755
--- a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputConstEnumInt.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputConstEnumInt.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
public enum DefaultsAndConstsOutputConstEnumInt
diff --git a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputConstEnumStr.cs b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputConstEnumStr.cs
similarity index 98%
rename from csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputConstEnumStr.cs
rename to csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputConstEnumStr.cs
index 3688d105b..076ff0e38 100755
--- a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputConstEnumStr.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputConstEnumStr.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputDefaultEnumInt.cs b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputDefaultEnumInt.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputDefaultEnumInt.cs
rename to csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputDefaultEnumInt.cs
index a70d7189a..177b2bc2c 100755
--- a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputDefaultEnumInt.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputDefaultEnumInt.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
public enum DefaultsAndConstsOutputDefaultEnumInt
diff --git a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputDefaultEnumStr.cs b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputDefaultEnumStr.cs
similarity index 98%
rename from csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputDefaultEnumStr.cs
rename to csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputDefaultEnumStr.cs
index 649606633..0bbf882d7 100755
--- a/csharp-client-sdk/SDK/Models/Shared/DefaultsAndConstsOutputDefaultEnumStr.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/DefaultsAndConstsOutputDefaultEnumStr.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Shared/DeprecatedEnum.cs b/csharp-client-sdk/Openapi/Models/Shared/DeprecatedEnum.cs
new file mode 100755
index 000000000..59e6bb202
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/DeprecatedEnum.cs
@@ -0,0 +1,58 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+ using System;
+ [Obsolete("This enum is deprecated.")]
+ public enum DeprecatedEnum
+ {
+ [JsonProperty("a")]
+ A,
+ [JsonProperty("b")]
+ B,
+ [JsonProperty("c")]
+ C,
+ }
+
+ public static class DeprecatedEnumExtension
+ {
+ public static string Value(this DeprecatedEnum value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static DeprecatedEnum ToEnum(this string value)
+ {
+ foreach(var field in typeof(DeprecatedEnum).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is DeprecatedEnum)
+ {
+ return (DeprecatedEnum)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum DeprecatedEnum");
+ }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Shared/DeprecatedFieldInObject.cs b/csharp-client-sdk/Openapi/Models/Shared/DeprecatedFieldInObject.cs
similarity index 89%
rename from csharp-client-sdk/SDK/Models/Shared/DeprecatedFieldInObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/DeprecatedFieldInObject.cs
index e4293168b..f86cc0af5 100755
--- a/csharp-client-sdk/SDK/Models/Shared/DeprecatedFieldInObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/DeprecatedFieldInObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System;
@@ -18,7 +18,7 @@ public class DeprecatedFieldInObject
[Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible")]
[JsonProperty("deprecatedEnum")]
- public DeprecatedFieldInObjectDeprecatedEnum? DeprecatedEnum { get; set; }
+ public DeprecatedEnum? DeprecatedEnum { get; set; }
[Obsolete("This field will be removed in a future release, please migrate away from it as soon as possible. Use NewField instead")]
[JsonProperty("deprecatedField")]
diff --git a/csharp-client-sdk/SDK/Models/Shared/DeprecatedObject.cs b/csharp-client-sdk/Openapi/Models/Shared/DeprecatedObject.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/DeprecatedObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/DeprecatedObject.cs
index dcdbeb99f..5ae15f2fd 100755
--- a/csharp-client-sdk/SDK/Models/Shared/DeprecatedObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/DeprecatedObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Shared/EmptyObjectParam.cs b/csharp-client-sdk/Openapi/Models/Shared/EmptyObjectParam.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Shared/EmptyObjectParam.cs
rename to csharp-client-sdk/Openapi/Models/Shared/EmptyObjectParam.cs
index 6ff32aab5..c3ad07449 100755
--- a/csharp-client-sdk/SDK/Models/Shared/EmptyObjectParam.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/EmptyObjectParam.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
public class EmptyObjectParam
diff --git a/csharp-client-sdk/SDK/Models/Shared/Enum.cs b/csharp-client-sdk/Openapi/Models/Shared/Enum.cs
similarity index 98%
rename from csharp-client-sdk/SDK/Models/Shared/Enum.cs
rename to csharp-client-sdk/Openapi/Models/Shared/Enum.cs
index fe4d6907f..befaad03f 100755
--- a/csharp-client-sdk/SDK/Models/Shared/Enum.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/Enum.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System;
diff --git a/csharp-client-sdk/Openapi/Models/Shared/EnumNumber.cs b/csharp-client-sdk/Openapi/Models/Shared/EnumNumber.cs
new file mode 100755
index 000000000..6f3aea3c6
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/EnumNumber.cs
@@ -0,0 +1,20 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+
+ public enum EnumNumber
+ {
+ One = 1,
+ Two = 2,
+ Three = 3,
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/EnumStr.cs b/csharp-client-sdk/Openapi/Models/Shared/EnumStr.cs
new file mode 100755
index 000000000..e0993c37f
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/EnumStr.cs
@@ -0,0 +1,58 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+ using System;
+
+ public enum EnumStr
+ {
+ [JsonProperty("one")]
+ One,
+ [JsonProperty("two")]
+ Two,
+ [JsonProperty("three")]
+ Three,
+ }
+
+ public static class EnumStrExtension
+ {
+ public static string Value(this EnumStr value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static EnumStr ToEnum(this string value)
+ {
+ foreach(var field in typeof(EnumStr).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is EnumStr)
+ {
+ return (EnumStr)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum EnumStr");
+ }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Shared/Error.cs b/csharp-client-sdk/Openapi/Models/Shared/Error.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/Error.cs
rename to csharp-client-sdk/Openapi/Models/Shared/Error.cs
index 46f23a10f..24f31d2e2 100755
--- a/csharp-client-sdk/SDK/Models/Shared/Error.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/Error.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/ErrorType.cs b/csharp-client-sdk/Openapi/Models/Shared/ErrorType.cs
similarity index 98%
rename from csharp-client-sdk/SDK/Models/Shared/ErrorType.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ErrorType.cs
index 150200d6e..fede97e80 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ErrorType.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ErrorType.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Shared/ExampleResource.cs b/csharp-client-sdk/Openapi/Models/Shared/ExampleResource.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Shared/ExampleResource.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ExampleResource.cs
index 71d1a2a5b..5a30b7df1 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ExampleResource.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ExampleResource.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System.Collections.Generic;
@@ -18,7 +18,7 @@ public class ExampleResource
{
[JsonProperty("chocolates")]
- public List Chocolates { get; set; } = default!;
+ public List Chocolates { get; set; } = default!;
[JsonProperty("id")]
public string Id { get; set; } = default!;
@@ -39,10 +39,10 @@ public class ExampleResource
public DateTime? CreatedAt { get; set; }
[JsonProperty("enumNumber")]
- public ExampleResourceEnumNumber? EnumNumber { get; set; }
+ public EnumNumber? EnumNumber { get; set; }
[JsonProperty("enumStr")]
- public ExampleResourceEnumStr? EnumStr { get; set; }
+ public EnumStr? EnumStr { get; set; }
[JsonProperty("mapOfInteger")]
public Dictionary? MapOfInteger { get; set; }
diff --git a/csharp-client-sdk/SDK/Models/Shared/FakerFormattedStrings.cs b/csharp-client-sdk/Openapi/Models/Shared/FakerFormattedStrings.cs
similarity index 99%
rename from csharp-client-sdk/SDK/Models/Shared/FakerFormattedStrings.cs
rename to csharp-client-sdk/Openapi/Models/Shared/FakerFormattedStrings.cs
index f65e26e8d..0560fec2d 100755
--- a/csharp-client-sdk/SDK/Models/Shared/FakerFormattedStrings.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/FakerFormattedStrings.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/FakerStrings.cs b/csharp-client-sdk/Openapi/Models/Shared/FakerStrings.cs
similarity index 99%
rename from csharp-client-sdk/SDK/Models/Shared/FakerStrings.cs
rename to csharp-client-sdk/Openapi/Models/Shared/FakerStrings.cs
index e780abd6f..2f738f3a6 100755
--- a/csharp-client-sdk/SDK/Models/Shared/FakerStrings.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/FakerStrings.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/FileResource.cs b/csharp-client-sdk/Openapi/Models/Shared/FileResource.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Shared/FileResource.cs
rename to csharp-client-sdk/Openapi/Models/Shared/FileResource.cs
index e7431cf70..18c0ec478 100755
--- a/csharp-client-sdk/SDK/Models/Shared/FileResource.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/FileResource.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/Openapi/Models/Shared/HeaderAuth.cs b/csharp-client-sdk/Openapi/Models/Shared/HeaderAuth.cs
new file mode 100755
index 000000000..68e5eb233
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/HeaderAuth.cs
@@ -0,0 +1,24 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+
+ public class HeaderAuth
+ {
+
+ [JsonProperty("expectedValue")]
+ public string ExpectedValue { get; set; } = default!;
+
+ [JsonProperty("headerName")]
+ public string HeaderName { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Shared/HttpBinSimpleJsonObject.cs b/csharp-client-sdk/Openapi/Models/Shared/HttpBinSimpleJsonObject.cs
similarity index 82%
rename from csharp-client-sdk/SDK/Models/Shared/HttpBinSimpleJsonObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/HttpBinSimpleJsonObject.cs
index c4790b5b0..9a991419c 100755
--- a/csharp-client-sdk/SDK/Models/Shared/HttpBinSimpleJsonObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/HttpBinSimpleJsonObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
@@ -16,6 +16,6 @@ public class HttpBinSimpleJsonObject
{
[JsonProperty("slideshow")]
- public HttpBinSimpleJsonObjectSlideshow Slideshow { get; set; } = default!;
+ public Slideshow Slideshow { get; set; } = default!;
}
}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/Int32Enum.cs b/csharp-client-sdk/Openapi/Models/Shared/Int32Enum.cs
new file mode 100755
index 000000000..f927fbcbe
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/Int32Enum.cs
@@ -0,0 +1,23 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+
+ ///
+ /// An int32 enum property.
+ ///
+ public enum Int32Enum
+ {
+ FiftyFive = 55,
+ SixtyNine = 69,
+ OneHundredAndEightyOne = 181,
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/Int32EnumVal.cs b/csharp-client-sdk/Openapi/Models/Shared/Int32EnumVal.cs
new file mode 100755
index 000000000..dc2be599b
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/Int32EnumVal.cs
@@ -0,0 +1,23 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+
+ ///
+ /// An int32 enum property.
+ ///
+ public enum Int32EnumVal
+ {
+ FiftyFive = 55,
+ SixtyNine = 69,
+ OneHundredAndEightyOne = 181,
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/IntEnum.cs b/csharp-client-sdk/Openapi/Models/Shared/IntEnum.cs
new file mode 100755
index 000000000..3dfbc5a96
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/IntEnum.cs
@@ -0,0 +1,23 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+
+ ///
+ /// An integer enum property.
+ ///
+ public enum IntEnum
+ {
+ One = 1,
+ Two = 2,
+ Three = 3,
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/IntEnumVal.cs b/csharp-client-sdk/Openapi/Models/Shared/IntEnumVal.cs
new file mode 100755
index 000000000..97f00b131
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/IntEnumVal.cs
@@ -0,0 +1,23 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+
+ ///
+ /// An integer enum property.
+ ///
+ public enum IntEnumVal
+ {
+ One = 1,
+ Two = 2,
+ Three = 3,
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Shared/LimitOffsetConfig.cs b/csharp-client-sdk/Openapi/Models/Shared/LimitOffsetConfig.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/LimitOffsetConfig.cs
rename to csharp-client-sdk/Openapi/Models/Shared/LimitOffsetConfig.cs
index a8618f209..247fdf0bf 100755
--- a/csharp-client-sdk/SDK/Models/Shared/LimitOffsetConfig.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/LimitOffsetConfig.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/MapObjValue.cs b/csharp-client-sdk/Openapi/Models/Shared/MapObjValue.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/MapObjValue.cs
rename to csharp-client-sdk/Openapi/Models/Shared/MapObjValue.cs
index 72216560d..1ed36ee4b 100755
--- a/csharp-client-sdk/SDK/Models/Shared/MapObjValue.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/MapObjValue.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Shared/MapObjValueCamelCase.cs b/csharp-client-sdk/Openapi/Models/Shared/MapObjValueCamelCase.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/MapObjValueCamelCase.cs
rename to csharp-client-sdk/Openapi/Models/Shared/MapObjValueCamelCase.cs
index d4fd0b35a..6f33c1ac3 100755
--- a/csharp-client-sdk/SDK/Models/Shared/MapObjValueCamelCase.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/MapObjValueCamelCase.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Shared/NullableObject.cs b/csharp-client-sdk/Openapi/Models/Shared/NullableObject.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/NullableObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/NullableObject.cs
index 22f831e9b..bbd9dbd80 100755
--- a/csharp-client-sdk/SDK/Models/Shared/NullableObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/NullableObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/NullableOneOfRefInObject.cs b/csharp-client-sdk/Openapi/Models/Shared/NullableOneOfRefInObject.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Shared/NullableOneOfRefInObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/NullableOneOfRefInObject.cs
index 5b81fe855..3681836bf 100755
--- a/csharp-client-sdk/SDK/Models/Shared/NullableOneOfRefInObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/NullableOneOfRefInObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/NullableOneOfTypeInObject.cs b/csharp-client-sdk/Openapi/Models/Shared/NullableOneOfTypeInObject.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Shared/NullableOneOfTypeInObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/NullableOneOfTypeInObject.cs
index b5d36814f..823f2a19e 100755
--- a/csharp-client-sdk/SDK/Models/Shared/NullableOneOfTypeInObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/NullableOneOfTypeInObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/ObjWithZeroValueComplexTypePtrs.cs b/csharp-client-sdk/Openapi/Models/Shared/ObjWithZeroValueComplexTypePtrs.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/ObjWithZeroValueComplexTypePtrs.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ObjWithZeroValueComplexTypePtrs.cs
index b760c1a69..67e8b9c96 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ObjWithZeroValueComplexTypePtrs.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ObjWithZeroValueComplexTypePtrs.cs
@@ -8,11 +8,11 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using NodaTime;
- using SDK.Utils;
+ using Openapi.Utils;
using System.Numerics;
using System;
diff --git a/csharp-client-sdk/SDK/Models/Shared/ObjectCircularReferenceObject.cs b/csharp-client-sdk/Openapi/Models/Shared/ObjectCircularReferenceObject.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Shared/ObjectCircularReferenceObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ObjectCircularReferenceObject.cs
index 8f52f9034..84c39ed4c 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ObjectCircularReferenceObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ObjectCircularReferenceObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/OneOfCircularReferenceObject.cs b/csharp-client-sdk/Openapi/Models/Shared/OneOfCircularReferenceObject.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Shared/OneOfCircularReferenceObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/OneOfCircularReferenceObject.cs
index da890c9a0..3644862e8 100755
--- a/csharp-client-sdk/SDK/Models/Shared/OneOfCircularReferenceObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/OneOfCircularReferenceObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/OneOfGenerationStressTest.cs b/csharp-client-sdk/Openapi/Models/Shared/OneOfGenerationStressTest.cs
similarity index 96%
rename from csharp-client-sdk/SDK/Models/Shared/OneOfGenerationStressTest.cs
rename to csharp-client-sdk/Openapi/Models/Shared/OneOfGenerationStressTest.cs
index f363b96e6..3ff345b87 100755
--- a/csharp-client-sdk/SDK/Models/Shared/OneOfGenerationStressTest.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/OneOfGenerationStressTest.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/ReadOnlyObject.cs b/csharp-client-sdk/Openapi/Models/Shared/ReadOnlyObject.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/ReadOnlyObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ReadOnlyObject.cs
index 065e3d811..72e79f330 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ReadOnlyObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ReadOnlyObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/ReadOnlyObjectInput.cs b/csharp-client-sdk/Openapi/Models/Shared/ReadOnlyObjectInput.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Shared/ReadOnlyObjectInput.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ReadOnlyObjectInput.cs
index c1c127891..ed2eff81f 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ReadOnlyObjectInput.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ReadOnlyObjectInput.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
public class ReadOnlyObjectInput
diff --git a/csharp-client-sdk/Openapi/Models/Shared/ReadWriteObject.cs b/csharp-client-sdk/Openapi/Models/Shared/ReadWriteObject.cs
new file mode 100755
index 000000000..e6e89c285
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/ReadWriteObject.cs
@@ -0,0 +1,27 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+
+ public class ReadWriteObject
+ {
+
+ [JsonProperty("num1")]
+ public long Num1 { get; set; } = default!;
+
+ [JsonProperty("num2")]
+ public long Num2 { get; set; } = default!;
+
+ [JsonProperty("num3")]
+ public long Num3 { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Shared/ReadWriteObjectOutput.cs b/csharp-client-sdk/Openapi/Models/Shared/ReadWriteObjectOutput.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/ReadWriteObjectOutput.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ReadWriteObjectOutput.cs
index 76539d36f..233c41ef6 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ReadWriteObjectOutput.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ReadWriteObjectOutput.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/RefQueryParamObj.cs b/csharp-client-sdk/Openapi/Models/Shared/RefQueryParamObj.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Shared/RefQueryParamObj.cs
rename to csharp-client-sdk/Openapi/Models/Shared/RefQueryParamObj.cs
index fb8d3afc4..3df395001 100755
--- a/csharp-client-sdk/SDK/Models/Shared/RefQueryParamObj.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/RefQueryParamObj.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
- using SDK.Utils;
+ using Openapi.Utils;
public class RefQueryParamObj
{
diff --git a/csharp-client-sdk/SDK/Models/Shared/RefQueryParamObjExploded.cs b/csharp-client-sdk/Openapi/Models/Shared/RefQueryParamObjExploded.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Shared/RefQueryParamObjExploded.cs
rename to csharp-client-sdk/Openapi/Models/Shared/RefQueryParamObjExploded.cs
index 98dda7cf4..f780064fc 100755
--- a/csharp-client-sdk/SDK/Models/Shared/RefQueryParamObjExploded.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/RefQueryParamObjExploded.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
- using SDK.Utils;
+ using Openapi.Utils;
public class RefQueryParamObjExploded
{
diff --git a/csharp-client-sdk/SDK/Models/Shared/SchemeBasicAuth.cs b/csharp-client-sdk/Openapi/Models/Shared/SchemeBasicAuth.cs
similarity index 92%
rename from csharp-client-sdk/SDK/Models/Shared/SchemeBasicAuth.cs
rename to csharp-client-sdk/Openapi/Models/Shared/SchemeBasicAuth.cs
index 5b181bc7c..443a33e84 100755
--- a/csharp-client-sdk/SDK/Models/Shared/SchemeBasicAuth.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/SchemeBasicAuth.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
- using SDK.Utils;
+ using Openapi.Utils;
public class SchemeBasicAuth
{
diff --git a/csharp-client-sdk/SDK/Models/Shared/Security.cs b/csharp-client-sdk/Openapi/Models/Shared/Security.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Shared/Security.cs
rename to csharp-client-sdk/Openapi/Models/Shared/Security.cs
index 4f3648cd3..5e74eb9cb 100755
--- a/csharp-client-sdk/SDK/Models/Shared/Security.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/Security.cs
@@ -8,9 +8,9 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
- using SDK.Utils;
+ using Openapi.Utils;
public class Security
{
diff --git a/csharp-client-sdk/SDK/Models/Shared/SimpleObject.cs b/csharp-client-sdk/Openapi/Models/Shared/SimpleObject.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Models/Shared/SimpleObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/SimpleObject.cs
index 5615ce7fa..24c3551de 100755
--- a/csharp-client-sdk/SDK/Models/Shared/SimpleObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/SimpleObject.cs
@@ -8,11 +8,11 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using NodaTime;
- using SDK.Utils;
+ using Openapi.Utils;
using System.Numerics;
using System;
@@ -85,14 +85,14 @@ public class SimpleObject
///
[JsonProperty("int32Enum")]
[SpeakeasyMetadata("header:name=int32Enum pathParam:name=int32Enum queryParam:name=int32Enum form:name=int32Enum multipartForm:name=int32Enum")]
- public SimpleObjectInt32Enum Int32Enum { get; set; } = default!;
+ public Int32Enum Int32Enum { get; set; } = default!;
///
/// An integer enum property.
///
[JsonProperty("intEnum")]
[SpeakeasyMetadata("header:name=intEnum pathParam:name=intEnum queryParam:name=intEnum form:name=intEnum multipartForm:name=intEnum")]
- public SimpleObjectIntEnum IntEnum { get; set; } = default!;
+ public IntEnum IntEnum { get; set; } = default!;
///
/// A number property.
diff --git a/csharp-client-sdk/SDK/Models/Shared/SimpleObjectCamelCase.cs b/csharp-client-sdk/Openapi/Models/Shared/SimpleObjectCamelCase.cs
similarity index 94%
rename from csharp-client-sdk/SDK/Models/Shared/SimpleObjectCamelCase.cs
rename to csharp-client-sdk/Openapi/Models/Shared/SimpleObjectCamelCase.cs
index caf61b63b..43550d541 100755
--- a/csharp-client-sdk/SDK/Models/Shared/SimpleObjectCamelCase.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/SimpleObjectCamelCase.cs
@@ -8,11 +8,11 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using NodaTime;
- using SDK.Utils;
+ using Openapi.Utils;
using System.Numerics;
using System;
@@ -64,7 +64,7 @@ public class SimpleObjectCamelCase
/// An int32 enum property.
///
[JsonProperty("int32_enum_val")]
- public SimpleObjectCamelCaseInt32EnumVal Int32EnumVal { get; set; } = default!;
+ public Int32EnumVal Int32EnumVal { get; set; } = default!;
///
/// An int32 property.
@@ -76,7 +76,7 @@ public class SimpleObjectCamelCase
/// An integer enum property.
///
[JsonProperty("int_enum_val")]
- public SimpleObjectCamelCaseIntEnumVal IntEnumVal { get; set; } = default!;
+ public IntEnumVal IntEnumVal { get; set; } = default!;
///
/// An integer property.
diff --git a/csharp-client-sdk/Openapi/Models/Shared/Slides.cs b/csharp-client-sdk/Openapi/Models/Shared/Slides.cs
new file mode 100755
index 000000000..25bb92679
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/Slides.cs
@@ -0,0 +1,28 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+
+ public class Slides
+ {
+
+ [JsonProperty("items")]
+ public List? Items { get; set; }
+
+ [JsonProperty("title")]
+ public string Title { get; set; } = default!;
+
+ [JsonProperty("type")]
+ public string Type { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/Slideshow.cs b/csharp-client-sdk/Openapi/Models/Shared/Slideshow.cs
new file mode 100755
index 000000000..0080d7a93
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/Slideshow.cs
@@ -0,0 +1,31 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+ using System.Collections.Generic;
+
+ public class Slideshow
+ {
+
+ [JsonProperty("author")]
+ public string Author { get; set; } = default!;
+
+ [JsonProperty("date")]
+ public string Date { get; set; } = default!;
+
+ [JsonProperty("slides")]
+ public List Slides { get; set; } = default!;
+
+ [JsonProperty("title")]
+ public string Title { get; set; } = default!;
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Models/Shared/Type.cs b/csharp-client-sdk/Openapi/Models/Shared/Type.cs
new file mode 100755
index 000000000..8b469d1cb
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Models/Shared/Type.cs
@@ -0,0 +1,54 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi.Models.Shared
+{
+ using Newtonsoft.Json;
+ using System;
+
+ public enum Type
+ {
+ [JsonProperty("obj1")]
+ Obj1,
+ }
+
+ public static class TypeExtension
+ {
+ public static string Value(this Type value)
+ {
+ return ((JsonPropertyAttribute)value.GetType().GetMember(value.ToString())[0].GetCustomAttributes(typeof(JsonPropertyAttribute), false)[0]).PropertyName ?? value.ToString();
+ }
+
+ public static Type ToEnum(this string value)
+ {
+ foreach(var field in typeof(Type).GetFields())
+ {
+ var attributes = field.GetCustomAttributes(typeof(JsonPropertyAttribute), false);
+ if (attributes.Length == 0)
+ {
+ continue;
+ }
+
+ var attribute = attributes[0] as JsonPropertyAttribute;
+ if (attribute != null && attribute.PropertyName == value)
+ {
+ var enumVal = field.GetValue(null);
+
+ if (enumVal is Type)
+ {
+ return (Type)enumVal;
+ }
+ }
+ }
+
+ throw new Exception($"Unknown value {value} for enum Type");
+ }
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/SDK/Models/Shared/TypedObject1.cs b/csharp-client-sdk/Openapi/Models/Shared/TypedObject1.cs
similarity index 86%
rename from csharp-client-sdk/SDK/Models/Shared/TypedObject1.cs
rename to csharp-client-sdk/Openapi/Models/Shared/TypedObject1.cs
index 024df03a9..c70d35360 100755
--- a/csharp-client-sdk/SDK/Models/Shared/TypedObject1.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/TypedObject1.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
@@ -16,7 +16,7 @@ public class TypedObject1
{
[JsonProperty("type")]
- public TypedObject1Type Type { get; set; } = default!;
+ public Type Type { get; set; } = default!;
[JsonProperty("value")]
public string Value { get; set; } = default!;
diff --git a/csharp-client-sdk/SDK/Models/Shared/UnsupportedEnums.cs b/csharp-client-sdk/Openapi/Models/Shared/UnsupportedEnums.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/UnsupportedEnums.cs
rename to csharp-client-sdk/Openapi/Models/Shared/UnsupportedEnums.cs
index 2b684665c..376790c90 100755
--- a/csharp-client-sdk/SDK/Models/Shared/UnsupportedEnums.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/UnsupportedEnums.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/ValidCircularReferenceObject.cs b/csharp-client-sdk/Openapi/Models/Shared/ValidCircularReferenceObject.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/ValidCircularReferenceObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/ValidCircularReferenceObject.cs
index b5c625938..49a0e0b09 100755
--- a/csharp-client-sdk/SDK/Models/Shared/ValidCircularReferenceObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/ValidCircularReferenceObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
using System.Collections.Generic;
diff --git a/csharp-client-sdk/SDK/Models/Shared/WriteOnlyObject.cs b/csharp-client-sdk/Openapi/Models/Shared/WriteOnlyObject.cs
similarity index 95%
rename from csharp-client-sdk/SDK/Models/Shared/WriteOnlyObject.cs
rename to csharp-client-sdk/Openapi/Models/Shared/WriteOnlyObject.cs
index be8607124..b9244ac6a 100755
--- a/csharp-client-sdk/SDK/Models/Shared/WriteOnlyObject.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/WriteOnlyObject.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
using Newtonsoft.Json;
diff --git a/csharp-client-sdk/SDK/Models/Shared/WriteOnlyObjectOutput.cs b/csharp-client-sdk/Openapi/Models/Shared/WriteOnlyObjectOutput.cs
similarity index 93%
rename from csharp-client-sdk/SDK/Models/Shared/WriteOnlyObjectOutput.cs
rename to csharp-client-sdk/Openapi/Models/Shared/WriteOnlyObjectOutput.cs
index 4a7e8c0c6..fd88c23c7 100755
--- a/csharp-client-sdk/SDK/Models/Shared/WriteOnlyObjectOutput.cs
+++ b/csharp-client-sdk/Openapi/Models/Shared/WriteOnlyObjectOutput.cs
@@ -8,7 +8,7 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK.Models.Shared
+namespace Openapi.Models.Shared
{
public class WriteOnlyObjectOutput
diff --git a/csharp-client-sdk/Openapi/Nest.cs b/csharp-client-sdk/Openapi/Nest.cs
new file mode 100755
index 000000000..be211c225
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Nest.cs
@@ -0,0 +1,44 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi
+{
+ using Openapi.Utils;
+ using System;
+
+ public interface INest
+ {
+ public ISDKFirst First { get; }
+ }
+
+ public class Nest: INest
+ {
+ public SDKConfig Config { get; private set; }
+ private const string _language = "csharp";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
+ private const string _openapiDocVersion = "0.1.0";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
+ private string _serverUrl = "";
+ private ISpeakeasyHttpClient _defaultClient;
+ private ISpeakeasyHttpClient _securityClient;
+ public ISDKFirst First { get; private set; }
+
+ public Nest(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ {
+ _defaultClient = defaultClient;
+ _securityClient = securityClient;
+ _serverUrl = serverUrl;
+ Config = config;
+ First = new SDKFirst(_defaultClient, _securityClient, _serverUrl, Config);
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Nested.cs b/csharp-client-sdk/Openapi/Nested.cs
new file mode 100755
index 000000000..e2c866bd3
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Nested.cs
@@ -0,0 +1,87 @@
+
+//------------------------------------------------------------------------------
+//
+// This code was generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
+//
+// Changes to this file may cause incorrect behavior and will be lost when
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+#nullable enable
+namespace Openapi
+{
+ using Openapi.Models.Operations;
+ using Openapi.Utils;
+ using System.Net.Http;
+ using System.Threading.Tasks;
+ using System;
+
+ public interface INested
+ {
+ public ISDKNestedFirst First { get; }
+ public ISDKSecond Second { get; }
+ Task GetAsync();
+ }
+
+ public class Nested: INested
+ {
+ public SDKConfig Config { get; private set; }
+ private const string _language = "csharp";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
+ private const string _openapiDocVersion = "0.1.0";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
+ private string _serverUrl = "";
+ private ISpeakeasyHttpClient _defaultClient;
+ private ISpeakeasyHttpClient _securityClient;
+ public ISDKNestedFirst First { get; private set; }
+ public ISDKSecond Second { get; private set; }
+
+ public Nested(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ {
+ _defaultClient = defaultClient;
+ _securityClient = securityClient;
+ _serverUrl = serverUrl;
+ Config = config;
+ First = new SDKNestedFirst(_defaultClient, _securityClient, _serverUrl, Config);
+ Second = new SDKSecond(_defaultClient, _securityClient, _serverUrl, Config);
+ }
+
+
+ public async Task GetAsync()
+ {
+ string baseUrl = _serverUrl;
+ if (baseUrl.EndsWith("/"))
+ {
+ baseUrl = baseUrl.Substring(0, baseUrl.Length - 1);
+ }
+ var urlString = baseUrl + "/anything/nested";
+
+
+ var httpRequest = new HttpRequestMessage(HttpMethod.Get, urlString);
+ httpRequest.Headers.Add("x-speakeasy-user-agent", _userAgent);
+
+
+ var client = _securityClient;
+
+ var httpResponse = await client.SendAsync(httpRequest);
+
+ var contentType = httpResponse.Content.Headers.ContentType?.MediaType;
+
+ var response = new NestedGetResponse
+ {
+ StatusCode = (int)httpResponse.StatusCode,
+ ContentType = contentType,
+ RawResponse = httpResponse
+ };
+
+ if((response.StatusCode == 200))
+ {
+
+ return response;
+ }
+ return response;
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/csharp-client-sdk/Openapi/Openapi.csproj b/csharp-client-sdk/Openapi/Openapi.csproj
new file mode 100755
index 000000000..ff306a728
--- /dev/null
+++ b/csharp-client-sdk/Openapi/Openapi.csproj
@@ -0,0 +1,34 @@
+
+
+ true
+ openapi
+ 0.2.0
+ Speakeasy
+ net5.0
+ enable
+ README.md
+ true
+ 1591
+ https://github.com/speakeasy-api/openapi-generation-tests
+
+
+
+
+
+
+
+
+
+
+
+
+
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+ all
+
+
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+ all
+
+
+
diff --git a/csharp-client-sdk/SDK/Pagination.cs b/csharp-client-sdk/Openapi/Pagination.cs
similarity index 97%
rename from csharp-client-sdk/SDK/Pagination.cs
rename to csharp-client-sdk/Openapi/Pagination.cs
index 4911574f9..c2663e386 100755
--- a/csharp-client-sdk/SDK/Pagination.cs
+++ b/csharp-client-sdk/Openapi/Pagination.cs
@@ -8,13 +8,13 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
using Newtonsoft.Json.Linq;
using Newtonsoft.Json;
- using SDK.Models.Operations;
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http.Headers;
@@ -25,7 +25,7 @@ namespace SDK
///
/// Endpoints for testing the pagination extension
///
- public interface IPaginationSDK
+ public interface IPagination
{
Task PaginationCursorBodyAsync(PaginationCursorBodyRequestBody request, string? serverUrl = null);
Task PaginationCursorParamsAsync(long cursor, string? serverUrl = null);
@@ -38,7 +38,7 @@ public interface IPaginationSDK
///
/// Endpoints for testing the pagination extension
///
- public class PaginationSDK: IPaginationSDK
+ public class Pagination: IPagination
{
/**
* PaginationCursorBodySERVERS contains the list of server urls available to the SDK.
@@ -84,15 +84,15 @@ public class PaginationSDK: IPaginationSDK
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public PaginationSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public Pagination(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
diff --git a/csharp-client-sdk/SDK/Parameters.cs b/csharp-client-sdk/Openapi/Parameters.cs
similarity index 98%
rename from csharp-client-sdk/SDK/Parameters.cs
rename to csharp-client-sdk/Openapi/Parameters.cs
index ec351028c..692deabd0 100755
--- a/csharp-client-sdk/SDK/Parameters.cs
+++ b/csharp-client-sdk/Openapi/Parameters.cs
@@ -8,12 +8,12 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
using Newtonsoft.Json;
- using SDK.Models.Operations;
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
using System.Collections.Generic;
using System.Net.Http.Headers;
using System.Net.Http;
@@ -23,13 +23,13 @@ namespace SDK
///
/// Endpoints for testing parameters.
///
- public interface IParametersSDK
+ public interface IParameters
{
Task DeepObjectQueryParamsMapAsync(Dictionary mapParam, Dictionary>? mapArrParam = null);
- Task DeepObjectQueryParamsObjectAsync(SimpleObject objParam, DeepObjectQueryParamsObjectObjArrParam? objArrParam = null);
+ Task DeepObjectQueryParamsObjectAsync(SimpleObject objParam, ObjArrParam? objArrParam = null);
Task DuplicateParamAsync(string duplicateParamRequest);
Task FormQueryParamsArrayAsync(List? arrParam = null, List? arrParamExploded = null);
- Task FormQueryParamsCamelObjectAsync(FormQueryParamsCamelObjectObjParamExploded objParamExploded, FormQueryParamsCamelObjectObjParam? objParam = null);
+ Task FormQueryParamsCamelObjectAsync(ObjParamExploded objParamExploded, ObjParam? objParam = null);
Task FormQueryParamsMapAsync(Dictionary? mapParam = null, Dictionary? mapParamExploded = null);
Task FormQueryParamsObjectAsync(SimpleObject objParamExploded, SimpleObject? objParam = null);
Task FormQueryParamsPrimitiveAsync(bool boolParam, long intParam, double numParam, string strParam);
@@ -53,19 +53,19 @@ public interface IParametersSDK
///
/// Endpoints for testing parameters.
///
- public class ParametersSDK: IParametersSDK
+ public class Parameters: IParameters
{
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public ParametersSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public Parameters(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
@@ -119,7 +119,7 @@ public async Task DeepObjectQueryParamsMapAsyn
}
- public async Task DeepObjectQueryParamsObjectAsync(SimpleObject objParam, DeepObjectQueryParamsObjectObjArrParam? objArrParam = null)
+ public async Task DeepObjectQueryParamsObjectAsync(SimpleObject objParam, ObjArrParam? objArrParam = null)
{
var request = new DeepObjectQueryParamsObjectRequest()
{
@@ -253,7 +253,7 @@ public async Task FormQueryParamsArrayAsync(List FormQueryParamsCamelObjectAsync(FormQueryParamsCamelObjectObjParamExploded objParamExploded, FormQueryParamsCamelObjectObjParam? objParam = null)
+ public async Task FormQueryParamsCamelObjectAsync(ObjParamExploded objParamExploded, ObjParam? objParam = null)
{
var request = new FormQueryParamsCamelObjectRequest()
{
diff --git a/csharp-client-sdk/SDK/RequestBodies.cs b/csharp-client-sdk/Openapi/RequestBodies.cs
similarity index 93%
rename from csharp-client-sdk/SDK/RequestBodies.cs
rename to csharp-client-sdk/Openapi/RequestBodies.cs
index 03274cbd6..d9eed58b0 100755
--- a/csharp-client-sdk/SDK/RequestBodies.cs
+++ b/csharp-client-sdk/Openapi/RequestBodies.cs
@@ -8,13 +8,13 @@
//
//------------------------------------------------------------------------------
#nullable enable
-namespace SDK
+namespace Openapi
{
using Newtonsoft.Json;
using NodaTime;
- using SDK.Models.Operations;
- using SDK.Models.Shared;
- using SDK.Utils;
+ using Openapi.Models.Operations;
+ using Openapi.Models.Shared;
+ using Openapi.Utils;
using System.Collections.Generic;
using System.Net.Http.Headers;
using System.Net.Http;
@@ -25,7 +25,7 @@ namespace SDK
///
/// Endpoints for testing request bodies.
///
- public interface IRequestBodiesSDK
+ public interface IRequestBodies
{
Task NullableObjectPostAsync(NullableObject request);
Task NullableRequiredEmptyObjectPostAsync(NullableRequiredEmptyObjectPostRequestBody request);
@@ -81,13 +81,13 @@ public interface IRequestBodiesSDK
Task RequestBodyPostJsonDataTypesNumberAsync(double request);
Task RequestBodyPostJsonDataTypesStringAsync(string request);
Task RequestBodyPostMultipleContentTypesComponentFilteredAsync(SimpleObject request);
- Task RequestBodyPostMultipleContentTypesInlineFilteredAsync(RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON request);
- Task RequestBodyPostMultipleContentTypesSplitParamFormAsync(RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded requestBody, string paramStr);
- Task RequestBodyPostMultipleContentTypesSplitParamJsonAsync(RequestBodyPostMultipleContentTypesSplitParamApplicationJSON requestBody, string paramStr);
- Task RequestBodyPostMultipleContentTypesSplitParamMultipartAsync(RequestBodyPostMultipleContentTypesSplitParamMultipartFormData requestBody, string paramStr);
- Task RequestBodyPostMultipleContentTypesSplitFormAsync(RequestBodyPostMultipleContentTypesSplitApplicationXWwwFormUrlencoded request);
- Task RequestBodyPostMultipleContentTypesSplitJsonAsync(RequestBodyPostMultipleContentTypesSplitApplicationJSON request);
- Task RequestBodyPostMultipleContentTypesSplitMultipartAsync(RequestBodyPostMultipleContentTypesSplitMultipartFormData request);
+ Task RequestBodyPostMultipleContentTypesInlineFilteredAsync(RequestBodyPostMultipleContentTypesInlineFilteredRequestBody request);
+ Task RequestBodyPostMultipleContentTypesSplitParamFormAsync(RequestBodyPostMultipleContentTypesSplitParamFormRequestBody requestBody, string paramStr);
+ Task RequestBodyPostMultipleContentTypesSplitParamJsonAsync(RequestBodyPostMultipleContentTypesSplitParamJsonRequestBody requestBody, string paramStr);
+ Task RequestBodyPostMultipleContentTypesSplitParamMultipartAsync(RequestBodyPostMultipleContentTypesSplitParamMultipartRequestBody requestBody, string paramStr);
+ Task RequestBodyPostMultipleContentTypesSplitFormAsync(RequestBodyPostMultipleContentTypesSplitFormRequestBody request);
+ Task RequestBodyPostMultipleContentTypesSplitJsonAsync(RequestBodyPostMultipleContentTypesSplitJsonRequestBody request);
+ Task RequestBodyPostMultipleContentTypesSplitMultipartAsync(RequestBodyPostMultipleContentTypesSplitMultipartRequestBody request);
Task RequestBodyPostNotNullableNotRequiredStringBodyAsync(string? request = null);
Task RequestBodyPostNullArrayAsync(List request);
Task RequestBodyPostNullDictionaryAsync(Dictionary request);
@@ -101,7 +101,7 @@ public interface IRequestBodiesSDK
Task RequestBodyPutMultipartSimpleAsync(SimpleObject request);
Task RequestBodyPutStringAsync(string request);
Task RequestBodyPutStringWithParamsAsync(string requestBody, string queryStringParam);
- Task RequestBodyReadAndWriteAsync(ReadWriteObjectInput request, string? serverUrl = null);
+ Task RequestBodyReadAndWriteAsync(ReadWriteObject request, string? serverUrl = null);
Task RequestBodyReadOnlyInputAsync(ReadOnlyObjectInput request, string? serverUrl = null);
Task RequestBodyReadOnlyUnionAsync(object request, string? serverUrl = null);
Task RequestBodyReadWriteOnlyUnionAsync(object request, string? serverUrl = null);
@@ -113,7 +113,7 @@ public interface IRequestBodiesSDK
///
/// Endpoints for testing request bodies.
///
- public class RequestBodiesSDK: IRequestBodiesSDK
+ public class RequestBodies: IRequestBodies
{
/**
* RequestBodyPostApplicationJsonArraySERVERS contains the list of server urls available to the SDK.
@@ -278,15 +278,15 @@ public class RequestBodiesSDK: IRequestBodiesSDK
public SDKConfig Config { get; private set; }
private const string _language = "csharp";
- private const string _sdkVersion = "0.1.2";
- private const string _sdkGenVersion = "2.173.0";
+ private const string _sdkVersion = "0.2.0";
+ private const string _sdkGenVersion = "2.181.1";
private const string _openapiDocVersion = "0.1.0";
- private const string _userAgent = "speakeasy-sdk/csharp 0.1.2 2.173.0 0.1.0 openapi";
+ private const string _userAgent = "speakeasy-sdk/csharp 0.2.0 2.181.1 0.1.0 openapi";
private string _serverUrl = "";
private ISpeakeasyHttpClient _defaultClient;
private ISpeakeasyHttpClient _securityClient;
- public RequestBodiesSDK(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
+ public RequestBodies(ISpeakeasyHttpClient defaultClient, ISpeakeasyHttpClient securityClient, string serverUrl, SDKConfig config)
{
_defaultClient = defaultClient;
_securityClient = securityClient;
@@ -384,7 +384,7 @@ public async Task NullableRequiredEmpty
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.NullableRequiredEmptyObjectPost200ApplicationJSONString = await httpResponse.Content.ReadAsStringAsync();
+ response.Res = await httpResponse.Content.ReadAsStringAsync();
}
return response;
@@ -433,7 +433,7 @@ public async Task NullableRequiredProperty
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.NullableRequiredPropertyPost200ApplicationJSONString = await httpResponse.Content.ReadAsStringAsync();
+ response.Res = await httpResponse.Content.ReadAsStringAsync();
}
return response;
@@ -482,7 +482,7 @@ public async Task NullableRequiredShar
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.NullableRequiredSharedObjectPost200ApplicationJSONString = await httpResponse.Content.ReadAsStringAsync();
+ response.Res = await httpResponse.Content.ReadAsStringAsync();
}
return response;
@@ -534,7 +534,7 @@ public async Task RequestBodyPostAp
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.SimpleObjects = JsonConvert.DeserializeObject>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Res = JsonConvert.DeserializeObject>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -586,7 +586,7 @@ public async Task RequestB
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.SimpleObjectCamelCases = JsonConvert.DeserializeObject>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Res = JsonConvert.DeserializeObject>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -736,7 +736,7 @@ public async Task RequestBod
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.Arrs = JsonConvert.DeserializeObject>>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Res = JsonConvert.DeserializeObject>>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -788,7 +788,7 @@ public async Task R
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.Arrs = JsonConvert.DeserializeObject>>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Res = JsonConvert.DeserializeObject>>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -840,7 +840,7 @@ public async Task
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.Arrs = JsonConvert.DeserializeObject>>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Res = JsonConvert.DeserializeObject>>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -892,7 +892,7 @@ public async Task RequestBodyP
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.Maps = JsonConvert.DeserializeObject>>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Res = JsonConvert.DeserializeObject>>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -944,7 +944,7 @@ public async Task Req
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.Maps = JsonConvert.DeserializeObject>>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Res = JsonConvert.DeserializeObject>>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -996,7 +996,7 @@ public async Task Reques
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.Strings = JsonConvert.DeserializeObject>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Res = JsonConvert.DeserializeObject>(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -1804,7 +1804,7 @@ public async Task RequestBodyPostComp
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostComplexNumberTypes200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -1853,7 +1853,7 @@ public async Task RequestBodyPostDefau
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostDefaultsAndConsts200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -1902,7 +1902,7 @@ public async Task RequestBodyPostEmptyObject
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostEmptyObject200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2098,7 +2098,7 @@ public async Task RequestBodyPo
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesArrayBigInt200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2147,7 +2147,7 @@ public async Task RequestBodyPost
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesArrayDate200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2196,7 +2196,7 @@ public async Task RequestBo
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesArrayDecimalStr200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2245,7 +2245,7 @@ public async Task RequestBodyPostJso
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesBigInt200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2294,7 +2294,7 @@ public async Task RequestBodyPost
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesBigIntStr200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2343,7 +2343,7 @@ public async Task RequestBodyPostJs
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesBoolean200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2392,7 +2392,7 @@ public async Task RequestBodyPostJsonD
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesDate200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2441,7 +2441,7 @@ public async Task RequestBodyPostJ
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesDateTime200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2490,7 +2490,7 @@ public async Task RequestBodyPostJs
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesDecimal200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2539,7 +2539,7 @@ public async Task RequestBodyPos
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesDecimalStr200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2588,7 +2588,7 @@ public async Task RequestBodyPostJs
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesFloat32200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2637,7 +2637,7 @@ public async Task RequestBodyPostJson
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesInt32200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2686,7 +2686,7 @@ public async Task RequestBodyPostJs
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesInteger200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2735,7 +2735,7 @@ public async Task RequestBodyP
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesMapBigIntStr200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2784,7 +2784,7 @@ public async Task RequestBodyPo
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesMapDateTime200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2833,7 +2833,7 @@ public async Task RequestBodyPos
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesMapDecimal200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2882,7 +2882,7 @@ public async Task RequestBodyPostJso
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesNumber200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2931,7 +2931,7 @@ public async Task RequestBodyPostJso
{
if(Utilities.IsContentTypeMatch("application/json",response.ContentType))
{
- response.RequestBodyPostJSONDataTypesString200ApplicationJSONObject = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
+ response.Object = JsonConvert.DeserializeObject(await httpResponse.Content.ReadAsStringAsync(), new JsonSerializerSettings(){ NullValueHandling = NullValueHandling.Ignore, Converters = new JsonConverter[] { new FlexibleObjectDeserializer(), new EnumSerializer() }});
}
return response;
@@ -2989,7 +2989,7 @@ public async Task
}
- public async Task RequestBodyPostMultipleContentTypesInlineFilteredAsync(RequestBodyPostMultipleContentTypesInlineFilteredApplicationJSON request)
+ public async Task RequestBodyPostMultipleContentTypesInlineFilteredAsync(RequestBodyPostMultipleContentTypesInlineFilteredRequestBody request)
{
string baseUrl = _serverUrl;
if (baseUrl.EndsWith("/"))
@@ -3038,7 +3038,7 @@ public async Task Req
}
- public async Task RequestBodyPostMultipleContentTypesSplitParamFormAsync(RequestBodyPostMultipleContentTypesSplitParamApplicationXWwwFormUrlencoded requestBody, string paramStr)
+ public async Task RequestBodyPostMultipleContentTypesSplitParamFormAsync(RequestBodyPostMultipleContentTypesSplitParamFormRequestBody requestBody, string paramStr)
{
var request = new RequestBodyPostMultipleContentTypesSplitParamFormRequest()
{
@@ -3092,7 +3092,7 @@ public async Task Req
}
- public async Task